├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yaml │ ├── feature_request.md │ └── performance.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yaml └── workflows │ ├── lint.yaml │ ├── release_to_pypi.yaml │ ├── tests.yaml │ └── tests_windows.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.bib ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── ci ├── environment.yaml └── environment_latest.yaml ├── docs ├── Makefile ├── README.md ├── environment.yaml └── source │ ├── 00_introduction.rst │ ├── 02_installation.rst │ ├── 03_quickstart.rst │ ├── 04_tutorials.rst │ ├── 05_advanced_tools.rst │ ├── 06_contributors_guidelines.rst │ ├── 07_maintainers_guidelines.rst │ ├── 08_authors.rst │ ├── conf.py │ ├── index.rst │ ├── static │ ├── CSAT-GPM-COIN.png │ ├── collaborative_process.png │ ├── documentation_release.png │ ├── example_jaxa_monitor.gif │ ├── example_pmw_frequency.png │ ├── fig2_schwaller_morris_2011.png │ ├── fig3_schwaller_morris_2011.png │ ├── package_release.png │ ├── timeline.png │ └── vs_code_settings.png │ └── tutorials │ └── .gitkeep ├── gpm ├── __init__.py ├── _config.py ├── accessor │ ├── __init__.py │ └── methods.py ├── bucket │ ├── __init__.py │ ├── analysis.py │ ├── dataframe.py │ ├── filters.py │ ├── io.py │ ├── partitioning.py │ ├── readers.py │ ├── routines.py │ └── writers.py ├── checks.py ├── configs.py ├── dataset │ ├── __init__.py │ ├── attrs.py │ ├── conventions.py │ ├── coords.py │ ├── crs.py │ ├── dataset.py │ ├── datatree.py │ ├── decoding │ │ ├── __init__.py │ │ ├── cf.py │ │ ├── coordinates.py │ │ ├── dataarray_attrs.py │ │ ├── decode_1b_radar.py │ │ ├── decode_1c_pmw.py │ │ ├── decode_2a_pmw.py │ │ ├── decode_2a_radar.py │ │ ├── decode_2b_corra.py │ │ ├── decode_imerg.py │ │ ├── routines.py │ │ └── utils.py │ ├── dimensions.py │ ├── granule.py │ ├── groups_variables.py │ └── tcprimed.py ├── encoding │ ├── __init__.py │ ├── encode_2a_radar.py │ ├── encode_imerg_v7.py │ └── routines.py ├── etc │ ├── __init__.py │ ├── colorbars │ │ ├── 1B_PMW_colorbars.yaml │ │ ├── 1B_RADAR_colorbars.yaml │ │ ├── 1C_PMW_colorbars.yaml │ │ ├── 2A_DPR_colorbars.yaml │ │ ├── 2A_PMW_colorbars.yaml │ │ ├── 2A_SLH_colorbars.yaml │ │ ├── 2B_CMB_colorbars.yaml │ │ ├── 2B_CSH_colorbars.yaml │ │ ├── GV.yaml │ │ ├── IMERG_colorbars.yaml │ │ ├── TCPRIMED.yaml │ │ ├── climatology.yaml │ │ ├── default_colorbars.yaml │ │ └── xradar.yaml │ ├── colormaps │ │ ├── categorical │ │ │ ├── cat3_RdOrGr.yaml │ │ │ └── surfaceTypeIndexPalette.yaml │ │ └── precipitation │ │ │ ├── IMERG_Liquid.yaml │ │ │ ├── IMERG_Solid.yaml │ │ │ ├── MCH_Precip_Clim.yaml │ │ │ ├── STEPS-BE.yaml │ │ │ ├── STEPS-BOM-RF3.yaml │ │ │ ├── STEPS-MCH.yaml │ │ │ ├── STEPS-NL.yaml │ │ │ ├── WhBlGrYlRd.yaml │ │ │ └── WhBlGrYlRdK.yaml │ ├── geospatial │ │ ├── continent_extent.yaml │ │ ├── country_acronyms.yaml │ │ ├── country_bounds.yaml │ │ └── country_extent.yaml │ ├── pmw │ │ ├── composites │ │ │ ├── AMSR2.yaml │ │ │ ├── AMSRE.yaml │ │ │ ├── AMSUB.yaml │ │ │ ├── ATMS.yaml │ │ │ ├── GMI.yaml │ │ │ ├── MHS.yaml │ │ │ ├── SAPHIR.yaml │ │ │ ├── SSMI.yaml │ │ │ ├── SSMIS.yaml │ │ │ └── TMI.yaml │ │ └── frequencies.yaml │ └── products.yaml ├── gv │ ├── __init__.py │ ├── plots.py │ ├── routines.py │ └── xradar │ │ ├── __init__.py │ │ ├── accessors.py │ │ └── methods.py ├── io │ ├── __init__.py │ ├── checks.py │ ├── data_integrity.py │ ├── download.py │ ├── filter.py │ ├── find.py │ ├── ges_disc.py │ ├── info.py │ ├── local.py │ ├── pps.py │ └── products.py ├── retrievals │ ├── __init__.py │ ├── retrieval_1b_c_pmw.py │ ├── retrieval_1b_radar.py │ ├── retrieval_2a_pmw.py │ ├── retrieval_2a_radar.py │ └── routines.py ├── scripts │ ├── download_gpm_daily_data.py │ ├── download_gpm_files.py │ └── download_gpm_monthly_data.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_accessor │ │ └── test_accessor_methods.py │ ├── test_bucket │ │ ├── test_io.py │ │ ├── test_partitioning.py │ │ ├── test_readers.py │ │ ├── test_routines.py │ │ └── test_writers.py │ ├── test_checks.py │ ├── test_config.py │ ├── test_dataset │ │ ├── conftest.py │ │ ├── decoding │ │ │ ├── __init__.py │ │ │ ├── test_attrs.py │ │ │ └── test_coordinates.py │ │ ├── test_attrs.py │ │ ├── test_coords.py │ │ ├── test_crs.py │ │ ├── test_datatree.py │ │ ├── test_dimensions.py │ │ ├── test_granule.py │ │ ├── test_granule_files.py │ │ └── test_groups_variables.py │ ├── test_donfig_config.py │ ├── test_io │ │ ├── test_data_integrity.py │ │ ├── test_download.py │ │ ├── test_filter.py │ │ ├── test_find.py │ │ ├── test_ges_disc.py │ │ ├── test_info.py │ │ ├── test_io_checks.py │ │ ├── test_local.py │ │ ├── test_pps.py │ │ └── test_products.py │ ├── test_utils │ │ ├── test_area.py │ │ ├── test_dask.py │ │ ├── test_dataframe.py │ │ ├── test_decorators.py │ │ ├── test_directories.py │ │ ├── test_geospatial.py │ │ ├── test_list.py │ │ ├── test_manipulations.py │ │ ├── test_parallel.py │ │ ├── test_pmw.py │ │ ├── test_remapping.py │ │ ├── test_slices.py │ │ ├── test_subsetting.py │ │ ├── test_time.py │ │ ├── test_timing.py │ │ ├── test_utils_checks.py │ │ ├── test_utils_orbit.py │ │ ├── test_xarray.py │ │ ├── test_yaml.py │ │ └── utils.py │ ├── test_visualization │ │ ├── test_cross_section.py │ │ ├── test_facetgrid.py │ │ ├── test_orbit.py │ │ ├── test_plot.py │ │ ├── test_title.py │ │ └── utils.py │ └── utils │ │ ├── __init__.py │ │ ├── fake_datasets.py │ │ └── hdf5.py ├── utils │ ├── __init__.py │ ├── archive.py │ ├── area.py │ ├── checks.py │ ├── collocation.py │ ├── dask.py │ ├── dataframe.py │ ├── decorators.py │ ├── directories.py │ ├── events.py │ ├── geospatial.py │ ├── list.py │ ├── manipulations.py │ ├── orbit.py │ ├── parallel.py │ ├── pmw.py │ ├── pyresample.py │ ├── remapping.py │ ├── slices.py │ ├── subsetting.py │ ├── time.py │ ├── timing.py │ ├── warnings.py │ ├── xarray.py │ ├── yaml.py │ └── zonal_stats.py └── visualization │ ├── __init__.py │ ├── animation.py │ ├── cross_section.py │ ├── eda.py │ ├── facetgrid.py │ ├── grid.py │ ├── orbit.py │ ├── plot.py │ ├── plot_3d.py │ ├── quicklooks.py │ └── title.py ├── pyproject.toml ├── setup.py └── tutorials ├── tutorial_01_DataDownload.ipynb ├── tutorial_02_IMERG.ipynb ├── tutorial_02_PMW_1C.ipynb ├── tutorial_02_PMW_2A.ipynb ├── tutorial_02_RADAR_2A.ipynb ├── tutorial_03_SR_GR_Calibration.ipynb ├── tutorial_03_SR_GR_Matching.ipynb └── tutorial_TCPRIMED.ipynb /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: false 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release_to_pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/workflows/release_to_pypi.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.github/workflows/tests_windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.github/workflows/tests_windows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/CITATION.bib -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/README.md -------------------------------------------------------------------------------- /ci/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/ci/environment.yaml -------------------------------------------------------------------------------- /ci/environment_latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/ci/environment_latest.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/environment.yaml -------------------------------------------------------------------------------- /docs/source/00_introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/00_introduction.rst -------------------------------------------------------------------------------- /docs/source/02_installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/02_installation.rst -------------------------------------------------------------------------------- /docs/source/03_quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/03_quickstart.rst -------------------------------------------------------------------------------- /docs/source/04_tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/04_tutorials.rst -------------------------------------------------------------------------------- /docs/source/05_advanced_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/05_advanced_tools.rst -------------------------------------------------------------------------------- /docs/source/06_contributors_guidelines.rst: -------------------------------------------------------------------------------- 1 | .. _contributor_guidelines: 2 | 3 | .. include:: ../../CONTRIBUTING.rst 4 | -------------------------------------------------------------------------------- /docs/source/07_maintainers_guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/07_maintainers_guidelines.rst -------------------------------------------------------------------------------- /docs/source/08_authors.rst: -------------------------------------------------------------------------------- 1 | .. _authors: 2 | 3 | .. mdinclude:: ../../AUTHORS.md 4 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/static/CSAT-GPM-COIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/CSAT-GPM-COIN.png -------------------------------------------------------------------------------- /docs/source/static/collaborative_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/collaborative_process.png -------------------------------------------------------------------------------- /docs/source/static/documentation_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/documentation_release.png -------------------------------------------------------------------------------- /docs/source/static/example_jaxa_monitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/example_jaxa_monitor.gif -------------------------------------------------------------------------------- /docs/source/static/example_pmw_frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/example_pmw_frequency.png -------------------------------------------------------------------------------- /docs/source/static/fig2_schwaller_morris_2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/fig2_schwaller_morris_2011.png -------------------------------------------------------------------------------- /docs/source/static/fig3_schwaller_morris_2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/fig3_schwaller_morris_2011.png -------------------------------------------------------------------------------- /docs/source/static/package_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/package_release.png -------------------------------------------------------------------------------- /docs/source/static/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/timeline.png -------------------------------------------------------------------------------- /docs/source/static/vs_code_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/docs/source/static/vs_code_settings.png -------------------------------------------------------------------------------- /docs/source/tutorials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/__init__.py -------------------------------------------------------------------------------- /gpm/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/_config.py -------------------------------------------------------------------------------- /gpm/accessor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/accessor/__init__.py -------------------------------------------------------------------------------- /gpm/accessor/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/accessor/methods.py -------------------------------------------------------------------------------- /gpm/bucket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/__init__.py -------------------------------------------------------------------------------- /gpm/bucket/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/analysis.py -------------------------------------------------------------------------------- /gpm/bucket/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/dataframe.py -------------------------------------------------------------------------------- /gpm/bucket/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/filters.py -------------------------------------------------------------------------------- /gpm/bucket/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/io.py -------------------------------------------------------------------------------- /gpm/bucket/partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/partitioning.py -------------------------------------------------------------------------------- /gpm/bucket/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/readers.py -------------------------------------------------------------------------------- /gpm/bucket/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/routines.py -------------------------------------------------------------------------------- /gpm/bucket/writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/bucket/writers.py -------------------------------------------------------------------------------- /gpm/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/checks.py -------------------------------------------------------------------------------- /gpm/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/configs.py -------------------------------------------------------------------------------- /gpm/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/__init__.py -------------------------------------------------------------------------------- /gpm/dataset/attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/attrs.py -------------------------------------------------------------------------------- /gpm/dataset/conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/conventions.py -------------------------------------------------------------------------------- /gpm/dataset/coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/coords.py -------------------------------------------------------------------------------- /gpm/dataset/crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/crs.py -------------------------------------------------------------------------------- /gpm/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/dataset.py -------------------------------------------------------------------------------- /gpm/dataset/datatree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/datatree.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/__init__.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/cf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/cf.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/coordinates.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/dataarray_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/dataarray_attrs.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/decode_1b_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/decode_1b_radar.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/decode_1c_pmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/decode_1c_pmw.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/decode_2a_pmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/decode_2a_pmw.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/decode_2a_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/decode_2a_radar.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/decode_2b_corra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/decode_2b_corra.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/decode_imerg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/decode_imerg.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/routines.py -------------------------------------------------------------------------------- /gpm/dataset/decoding/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/decoding/utils.py -------------------------------------------------------------------------------- /gpm/dataset/dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/dimensions.py -------------------------------------------------------------------------------- /gpm/dataset/granule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/granule.py -------------------------------------------------------------------------------- /gpm/dataset/groups_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/groups_variables.py -------------------------------------------------------------------------------- /gpm/dataset/tcprimed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/dataset/tcprimed.py -------------------------------------------------------------------------------- /gpm/encoding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/encoding/__init__.py -------------------------------------------------------------------------------- /gpm/encoding/encode_2a_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/encoding/encode_2a_radar.py -------------------------------------------------------------------------------- /gpm/encoding/encode_imerg_v7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/encoding/encode_imerg_v7.py -------------------------------------------------------------------------------- /gpm/encoding/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/encoding/routines.py -------------------------------------------------------------------------------- /gpm/etc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/__init__.py -------------------------------------------------------------------------------- /gpm/etc/colorbars/1B_PMW_colorbars.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | Tb: 3 | reference: brightness_temperature 4 | -------------------------------------------------------------------------------- /gpm/etc/colorbars/1B_RADAR_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/1B_RADAR_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/1C_PMW_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/1C_PMW_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/2A_DPR_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/2A_DPR_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/2A_PMW_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/2A_PMW_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/2A_SLH_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/2A_SLH_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/2B_CMB_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/2B_CMB_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/2B_CSH_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/2B_CSH_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/GV.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/GV.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/IMERG_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/IMERG_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/TCPRIMED.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/TCPRIMED.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/climatology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/climatology.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/default_colorbars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/default_colorbars.yaml -------------------------------------------------------------------------------- /gpm/etc/colorbars/xradar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colorbars/xradar.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/categorical/cat3_RdOrGr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/categorical/cat3_RdOrGr.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/categorical/surfaceTypeIndexPalette.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/categorical/surfaceTypeIndexPalette.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/IMERG_Liquid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/IMERG_Liquid.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/IMERG_Solid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/IMERG_Solid.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/MCH_Precip_Clim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/MCH_Precip_Clim.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/STEPS-BE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/STEPS-BE.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/STEPS-BOM-RF3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/STEPS-BOM-RF3.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/STEPS-MCH.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/STEPS-MCH.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/STEPS-NL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/STEPS-NL.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/WhBlGrYlRd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/WhBlGrYlRd.yaml -------------------------------------------------------------------------------- /gpm/etc/colormaps/precipitation/WhBlGrYlRdK.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/colormaps/precipitation/WhBlGrYlRdK.yaml -------------------------------------------------------------------------------- /gpm/etc/geospatial/continent_extent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/geospatial/continent_extent.yaml -------------------------------------------------------------------------------- /gpm/etc/geospatial/country_acronyms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/geospatial/country_acronyms.yaml -------------------------------------------------------------------------------- /gpm/etc/geospatial/country_bounds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/geospatial/country_bounds.yaml -------------------------------------------------------------------------------- /gpm/etc/geospatial/country_extent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/geospatial/country_extent.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/AMSR2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/AMSR2.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/AMSRE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/AMSRE.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/AMSUB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/AMSUB.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/ATMS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/ATMS.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/GMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/GMI.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/MHS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/MHS.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/SAPHIR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/SAPHIR.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/SSMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/SSMI.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/SSMIS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/SSMIS.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/composites/TMI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/composites/TMI.yaml -------------------------------------------------------------------------------- /gpm/etc/pmw/frequencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/pmw/frequencies.yaml -------------------------------------------------------------------------------- /gpm/etc/products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/etc/products.yaml -------------------------------------------------------------------------------- /gpm/gv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/gv/__init__.py -------------------------------------------------------------------------------- /gpm/gv/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/gv/plots.py -------------------------------------------------------------------------------- /gpm/gv/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/gv/routines.py -------------------------------------------------------------------------------- /gpm/gv/xradar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/gv/xradar/__init__.py -------------------------------------------------------------------------------- /gpm/gv/xradar/accessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/gv/xradar/accessors.py -------------------------------------------------------------------------------- /gpm/gv/xradar/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/gv/xradar/methods.py -------------------------------------------------------------------------------- /gpm/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/__init__.py -------------------------------------------------------------------------------- /gpm/io/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/checks.py -------------------------------------------------------------------------------- /gpm/io/data_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/data_integrity.py -------------------------------------------------------------------------------- /gpm/io/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/download.py -------------------------------------------------------------------------------- /gpm/io/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/filter.py -------------------------------------------------------------------------------- /gpm/io/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/find.py -------------------------------------------------------------------------------- /gpm/io/ges_disc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/ges_disc.py -------------------------------------------------------------------------------- /gpm/io/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/info.py -------------------------------------------------------------------------------- /gpm/io/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/local.py -------------------------------------------------------------------------------- /gpm/io/pps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/pps.py -------------------------------------------------------------------------------- /gpm/io/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/io/products.py -------------------------------------------------------------------------------- /gpm/retrievals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/retrievals/__init__.py -------------------------------------------------------------------------------- /gpm/retrievals/retrieval_1b_c_pmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/retrievals/retrieval_1b_c_pmw.py -------------------------------------------------------------------------------- /gpm/retrievals/retrieval_1b_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/retrievals/retrieval_1b_radar.py -------------------------------------------------------------------------------- /gpm/retrievals/retrieval_2a_pmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/retrievals/retrieval_2a_pmw.py -------------------------------------------------------------------------------- /gpm/retrievals/retrieval_2a_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/retrievals/retrieval_2a_radar.py -------------------------------------------------------------------------------- /gpm/retrievals/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/retrievals/routines.py -------------------------------------------------------------------------------- /gpm/scripts/download_gpm_daily_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/scripts/download_gpm_daily_data.py -------------------------------------------------------------------------------- /gpm/scripts/download_gpm_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/scripts/download_gpm_files.py -------------------------------------------------------------------------------- /gpm/scripts/download_gpm_monthly_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/scripts/download_gpm_monthly_data.py -------------------------------------------------------------------------------- /gpm/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/__init__.py -------------------------------------------------------------------------------- /gpm/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/conftest.py -------------------------------------------------------------------------------- /gpm/tests/test_accessor/test_accessor_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_accessor/test_accessor_methods.py -------------------------------------------------------------------------------- /gpm/tests/test_bucket/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_bucket/test_io.py -------------------------------------------------------------------------------- /gpm/tests/test_bucket/test_partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_bucket/test_partitioning.py -------------------------------------------------------------------------------- /gpm/tests/test_bucket/test_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_bucket/test_readers.py -------------------------------------------------------------------------------- /gpm/tests/test_bucket/test_routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_bucket/test_routines.py -------------------------------------------------------------------------------- /gpm/tests/test_bucket/test_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_bucket/test_writers.py -------------------------------------------------------------------------------- /gpm/tests/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_checks.py -------------------------------------------------------------------------------- /gpm/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_config.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/conftest.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/decoding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpm/tests/test_dataset/decoding/test_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/decoding/test_attrs.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/decoding/test_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/decoding/test_coordinates.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_attrs.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_coords.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_crs.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_datatree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_datatree.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_dimensions.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_granule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_granule.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_granule_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_granule_files.py -------------------------------------------------------------------------------- /gpm/tests/test_dataset/test_groups_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_dataset/test_groups_variables.py -------------------------------------------------------------------------------- /gpm/tests/test_donfig_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_donfig_config.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_data_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_data_integrity.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_download.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_filter.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_find.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_ges_disc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_ges_disc.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_info.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_io_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_io_checks.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_local.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_pps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_pps.py -------------------------------------------------------------------------------- /gpm/tests/test_io/test_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_io/test_products.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_area.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_dask.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_dataframe.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_decorators.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_directories.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_geospatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_geospatial.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_list.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_manipulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_manipulations.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_parallel.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_pmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_pmw.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_remapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_remapping.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_slices.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_subsetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_subsetting.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_time.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_timing.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_utils_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_utils_checks.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_utils_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_utils_orbit.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_xarray.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/test_yaml.py -------------------------------------------------------------------------------- /gpm/tests/test_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_utils/utils.py -------------------------------------------------------------------------------- /gpm/tests/test_visualization/test_cross_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_visualization/test_cross_section.py -------------------------------------------------------------------------------- /gpm/tests/test_visualization/test_facetgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_visualization/test_facetgrid.py -------------------------------------------------------------------------------- /gpm/tests/test_visualization/test_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_visualization/test_orbit.py -------------------------------------------------------------------------------- /gpm/tests/test_visualization/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_visualization/test_plot.py -------------------------------------------------------------------------------- /gpm/tests/test_visualization/test_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_visualization/test_title.py -------------------------------------------------------------------------------- /gpm/tests/test_visualization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/test_visualization/utils.py -------------------------------------------------------------------------------- /gpm/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpm/tests/utils/fake_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/utils/fake_datasets.py -------------------------------------------------------------------------------- /gpm/tests/utils/hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/tests/utils/hdf5.py -------------------------------------------------------------------------------- /gpm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/__init__.py -------------------------------------------------------------------------------- /gpm/utils/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/archive.py -------------------------------------------------------------------------------- /gpm/utils/area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/area.py -------------------------------------------------------------------------------- /gpm/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/checks.py -------------------------------------------------------------------------------- /gpm/utils/collocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/collocation.py -------------------------------------------------------------------------------- /gpm/utils/dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/dask.py -------------------------------------------------------------------------------- /gpm/utils/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/dataframe.py -------------------------------------------------------------------------------- /gpm/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/decorators.py -------------------------------------------------------------------------------- /gpm/utils/directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/directories.py -------------------------------------------------------------------------------- /gpm/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/events.py -------------------------------------------------------------------------------- /gpm/utils/geospatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/geospatial.py -------------------------------------------------------------------------------- /gpm/utils/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/list.py -------------------------------------------------------------------------------- /gpm/utils/manipulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/manipulations.py -------------------------------------------------------------------------------- /gpm/utils/orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/orbit.py -------------------------------------------------------------------------------- /gpm/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/parallel.py -------------------------------------------------------------------------------- /gpm/utils/pmw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/pmw.py -------------------------------------------------------------------------------- /gpm/utils/pyresample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/pyresample.py -------------------------------------------------------------------------------- /gpm/utils/remapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/remapping.py -------------------------------------------------------------------------------- /gpm/utils/slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/slices.py -------------------------------------------------------------------------------- /gpm/utils/subsetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/subsetting.py -------------------------------------------------------------------------------- /gpm/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/time.py -------------------------------------------------------------------------------- /gpm/utils/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/timing.py -------------------------------------------------------------------------------- /gpm/utils/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/warnings.py -------------------------------------------------------------------------------- /gpm/utils/xarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/xarray.py -------------------------------------------------------------------------------- /gpm/utils/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/yaml.py -------------------------------------------------------------------------------- /gpm/utils/zonal_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/utils/zonal_stats.py -------------------------------------------------------------------------------- /gpm/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/__init__.py -------------------------------------------------------------------------------- /gpm/visualization/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/animation.py -------------------------------------------------------------------------------- /gpm/visualization/cross_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/cross_section.py -------------------------------------------------------------------------------- /gpm/visualization/eda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/eda.py -------------------------------------------------------------------------------- /gpm/visualization/facetgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/facetgrid.py -------------------------------------------------------------------------------- /gpm/visualization/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/grid.py -------------------------------------------------------------------------------- /gpm/visualization/orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/orbit.py -------------------------------------------------------------------------------- /gpm/visualization/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/plot.py -------------------------------------------------------------------------------- /gpm/visualization/plot_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/plot_3d.py -------------------------------------------------------------------------------- /gpm/visualization/quicklooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/quicklooks.py -------------------------------------------------------------------------------- /gpm/visualization/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/gpm/visualization/title.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/setup.py -------------------------------------------------------------------------------- /tutorials/tutorial_01_DataDownload.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_01_DataDownload.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_02_IMERG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_02_IMERG.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_02_PMW_1C.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_02_PMW_1C.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_02_PMW_2A.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_02_PMW_2A.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_02_RADAR_2A.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_02_RADAR_2A.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_03_SR_GR_Calibration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_03_SR_GR_Calibration.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_03_SR_GR_Matching.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_03_SR_GR_Matching.ipynb -------------------------------------------------------------------------------- /tutorials/tutorial_TCPRIMED.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghiggi/gpm_api/HEAD/tutorials/tutorial_TCPRIMED.ipynb --------------------------------------------------------------------------------