Skip to content

Commit

Permalink
ADD: add CSCS data retrieval functions from rainforest to pyrad
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfidan committed Aug 29, 2024
1 parent 90b9868 commit 4b952ac
Show file tree
Hide file tree
Showing 2 changed files with 737 additions and 41 deletions.
49 changes: 8 additions & 41 deletions src/pyrad_proc/pyrad/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,47 +7,6 @@
Functions to read and write data and configuration files.
Radar Utilities
===============
.. autosummary::
:toctree: generated/
get_data_along_rng
get_data_along_azi
get_data_along_ele
get_ROI
rainfall_accumulation
time_series_statistics
find_contiguous_times
join_time_series
get_range_bins_to_avg
find_ray_index
find_rng_index
find_nearest_gate
find_colocated_indexes
get_fixed_rng_data
time_avg_range
get_closest_solar_flux
create_sun_hits_field
create_sun_retrieval_field
compute_quantiles
compute_quantiles_from_hist
compute_quantiles_sweep
compute_2d_hist
compute_1d_stats
compute_2d_stats
compute_histogram
compute_histogram_sweep
belongs_roi_indices
get_cercle_coords
get_box_coords
compute_profile_stats
project_to_vertical
quantiles_weighted
ratio_bootstrapping
compute_average_vad
"""

from .radar_utils import time_avg_range, get_closest_solar_flux # noqa
Expand All @@ -68,4 +27,12 @@

from .stat_utils import quantiles_weighted, ratio_bootstrapping # noqa

from .data_retrieval_utils import retrieve_hzt_prod # noqa
from .data_retrieval_utils import retrieve_hzt_RT # noqa
from .data_retrieval_utils import retrieve_mch_prod # noqa
from .data_retrieval_utils import retrieve_mch_prod_RT # noqa
from .data_retrieval_utils import retrieve_CPCCV # noqa
from .data_retrieval_utils import retrieve_AQC_XLS # noqa


__all__ = [s for s in dir() if not s.startswith("_")]
Loading

0 comments on commit 4b952ac

Please sign in to comment.