├── .gitignore ├── README.md ├── conda-recipes ├── README.md ├── gdal │ ├── build.sh │ ├── meta.yaml │ ├── os1_hw.py │ ├── sites.dbf │ ├── sites.sbn │ ├── sites.sbx │ ├── sites.shp │ └── sites.shx ├── geos │ ├── build.sh │ └── meta.yaml ├── h5py │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── run_test.py ├── hdf4 │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── post-link.sh ├── hdf5 │ ├── bld.bat │ ├── build.sh │ ├── hdf5.spec │ └── meta.yaml ├── libnetcdf │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── netcdf4-python │ ├── build.sh │ └── meta.yaml └── proj4 │ ├── build.sh │ └── meta.yaml ├── testing ├── README.md ├── __init__.py ├── fixtures.py ├── lpdaac │ ├── __init__.py │ └── mod │ │ ├── __init__.py │ │ └── test_mod.py └── test_examples.py └── zoo ├── __init__.py ├── gesdisc ├── __init__.py ├── airs │ ├── AIRS_L2_radiances_channel567.py │ ├── AIRS_L3_RelHumid_A_Lvls11.py │ ├── AIRS_L3_Temperature_MW_A_Lvls11.py │ └── __init__.py ├── buv │ ├── BUV_Nimbus04_L3zm_v01_00_2012m0203t144121_h5.py │ ├── SBUV2_NOAA17_L2_SBUV2N17L2_2011m1231_v01_01_2012m0905t152911_h5.py │ └── __init__.py ├── gosat │ ├── __init__.py │ └── acos_L2s_110101_02_Production_v110110_L2s2800_r01_PolB.py ├── gsstf │ ├── GSSTFYC_3_Year_1998_2008.py │ ├── GSSTF_3_2008_12_31.py │ ├── GSSTF_NCEP_3_2008_12_31.py │ └── __init__.py ├── hirdls │ ├── HIRDLS_Aura_L2_v06_00_00_c01_2008d001.py │ ├── HIRDLS_Aura_L3ZAD_v06_00_00_c02_2005d022_2008d077.py │ └── __init__.py ├── merra │ ├── MERRA_MFYC_TIME4_Height42.py │ ├── MERRA_PLE_TIME1_Height72.py │ └── __init__.py ├── mls │ ├── MLS_L2GP_v01_L2gpValue.py │ ├── MLS_L2GP_v02_L2gpValue.py │ └── __init__.py ├── oco2 │ └── oco2_L2StdND_03945a_150330_B6000_150331024816.h5.py ├── omi │ ├── OMI_L2_OMNO2_CloudFraction.py │ ├── OMI_L3_ColumnAmountO3.py │ ├── OMI_OMCLDO2G.py │ └── __init__.py ├── swdb │ ├── DeepBlue_SeaWiFS_1_0_L3_20100101_v002_20110527T191319Z.py │ ├── DeepBlue_SeaWiFS_L2_20101211T000331Z_v002_20110527T105357Z.py │ └── __init__.py ├── toms │ ├── TOMS_L3_Ozone.py │ └── __init__.py └── trmm │ ├── TRMM_1B21_19971208_00170_7_HDF.py │ ├── TRMM_1B21_CSI_binDIDHmean_zoom.py │ ├── TRMM_1B21_binDIDHmean.py │ ├── TRMM_2A12_20140308_92894_7_HDF.py │ ├── TRMM_2A12_cldWater_lvl9.py │ ├── TRMM_2A25_CSI_nearSurfZ_zoom.py │ ├── TRMM_2B31_CSI_dHat_zoom.py │ ├── TRMM_3A46_ssmiData.py │ ├── TRMM_3B42_precipitation_scan0.py │ ├── TRMM_3B43_precipitation_scan0.py │ └── __init__.py ├── ghrc ├── __init__.py └── lis │ ├── GHRC_LISOTD_H_COM_F_lvl0.py │ └── __init__.py ├── laads ├── __init__.py ├── mod │ ├── MOD05_L2_Water_Vapor_Near_Infrared.py │ ├── MOD06_L2_Cloud_Optical_Thickness.py │ ├── MOD07_L2_Retrieved_Moisture_Profile_Pressure_Lvl5.py │ ├── MOD08_D3_Cloud_Fraction_Liquid.py │ ├── MOD21KM_EV_Band26.py │ ├── MODARNSS_EV_1KM_Emissive_level0.py │ ├── MODATML2_Cloud_Fraction.py │ └── __init__.py ├── myd │ ├── MYD021KM_EV_1KM_Emissive_level0.py │ ├── MYD021KM_EV_Band26.py │ ├── MYD02HKM_A2010031_0035_005_2010031183706_EV_500_RefSB_lvl0.py │ ├── MYD07_L2_Water_Vapor.py │ ├── MYD08_D3_Cloud_Fraction_Liquid.py │ ├── MYDARNSS_EV_1KM_Emissive_lvl9.py │ └── __init__.py └── viirs │ ├── NPP_D16BRDF3_L3D_A2012241_h20v03_C1_03001_2012258151353.py │ ├── NPP_VSTIP_L2_A2012002_2340_P1_03001_2012022162425.py │ └── __init__.py ├── larc ├── __init__.py ├── calipso │ ├── CAL_LID_L2_VFM-ValStage1-V3-02.2011-12-31T23-18-11ZD.hdf.py │ └── CAL_LID_L2_VFM-ValStage1-V3-02.2011-12-31T23-18-11ZD.hdf.v.py ├── ceres │ ├── CERES_EBAF_netclr_lvl0.py │ ├── CER_AVG_Aqua-FM3-MODIS_Edition2B_007005.200510.hdf.py │ ├── CER_ES4_Aqua-FM3_Edition1-CV_024032.200908.hdf.py │ ├── CER_ES4_TRMM_Longwave_Flux_2_5_R.py │ ├── CER_ISCCP_Day_LLO_Dep_Alt_M_Ham.py │ ├── CER_ISCCP_Day_LLO_Dep_Alt_M_Sin.py │ ├── CER_ISCCP_Day_LLO_Dep_Alt_M_equ.py │ ├── CER_ISCCP_GEO_Effective_Temperature_M_tt0_MHA0.py │ ├── CER_SRBAVG3_1_0_Reg_MHA_CTP_MHA10_CS1_Ham.py │ ├── CER_SYN_Aqua_OTF_LTC_Sky_lvl2_Ham.py │ ├── CER_ZAVG_Aqua_1_0_Z_MHA_CLH_IPD_S0_N4_line.py │ ├── CER_ZAVG_Aqua_1_0_Z_MHA_CLH_IPD_lvl0.py │ └── __init__.py ├── misr │ ├── MISR_AM1_AS_AEROSOL_P004_O066234_F12_0022.py │ ├── MISR_AM1_CGAL_2005_F06_0012.hdf.py │ ├── MISR_AM1_TC_ALBEDO_l50.py │ ├── MISR_ELLIPSOID_P117_F03_BlueRR_lvl0_179.py │ └── MISR_ELLIPSOID_P117_F03_BlueRR_lvl0_179_AGP.py ├── mopitt │ ├── MOP02J_20131129_L2V16_2_3.py │ ├── MOP02_20000303_L2V5_7_1.py │ ├── MOP03T_20131129_L3V4_2_1.py │ ├── MOP03_CO_Profiles_Day_horizontal_lvl111.py │ ├── MOP03_CO_Profiles_Day_lvl1.py │ ├── MOP03_CO_Profiles_Day_vertical_lvl178.py │ └── __init__.py └── tes │ ├── TES_Aura_L2_O3_Nadir_r0000011015_F05_07.py │ ├── TES_L2_O3_line_lvls.py │ ├── TES_L3_CH4_SurfacePressure.py │ └── __init__.py ├── lpdaac ├── __init__.py ├── ged │ ├── AGNS100_v003_64__089_0001.py │ └── __init__.py ├── mcd │ ├── MCD43A3_A2013305_h12v11_005_2013322102420.py │ ├── MCD43B4_Nadir_Reflectance_Band1.py │ ├── MCD43C1_Black_Sky_Albedo_Num_Albedo_Bands1.py │ └── __init__.py ├── mod │ ├── MOD09GA_Range.py │ ├── MOD09GA_sur_refl_b01_1.py │ ├── MOD09GHK_sur_refl_01_1.py │ ├── MOD11C2_LST_Night_CMG.py │ ├── MOD11_L2_LST.py │ ├── MOD13A1_500m_16_days_EVI.py │ ├── MOD13C2_CMG_0_05_Deg_Monthly_NDVI.py │ ├── MOD17A2_PsnNet_1km.py │ ├── MOD43B4_Nadir_Reflectance_lvl5.py │ └── __init__.py ├── myd │ ├── MYD09A1_sur_refl_b02.py │ ├── MYD09GQ_A2012246_h35v10_005_2012248075505.py │ ├── MYD11C2_LST_Night_CMG.py │ ├── MYD11_L2_LST.py │ ├── MYD13A1_MODIS_Grid_16DAY_500m_NDVI.py │ ├── MYD17A2_Gpp_1km.py │ └── __init__.py ├── vip │ ├── VIP01P4_A2010001_002.py │ └── __init__.py └── weld │ ├── CONUS_annual_2012_h01v06_doy007to356_v1_5.py │ └── __init__.py ├── nsidc ├── __init__.py ├── amsre │ ├── AMSR_E_L2A_BrightnessTemperatures_V12_201110032238_D_hdf.py │ ├── AMSR_E_L2_Ocean_V06_200206190029_D_High_res_cloud.py │ ├── AMSR_E_L3_5DaySnow_NH_SWE.py │ ├── AMSR_E_L3_DL_A_TB36_5H_Res_1.py │ ├── AMSR_E_L3_DO_High_res_cloud.py │ ├── AMSR_E_L3_MO_Med_res_vapor.py │ ├── AMSR_E_L3_RG_TbOceanRain.py │ ├── AMSR_E_L3_SI_06km_NH_89V_DAY.py │ ├── AMSR_E_L3_SI_12km_NH_18H_DSC.py │ ├── AMSR_E_L3_SI_12km_SH_36H_DAY.py │ ├── AMSR_E_L3_SI_25km_NH_06V_ASC.py │ ├── AMSR_E_L3_WO_High_res_cloud.py │ └── __init__.py ├── icesat │ ├── GLAH13_633_2103_001_1317_0_01_0001.py │ ├── GLAH13_633_2103_001_1317_0_01_0001_a.py │ └── __init__.py ├── modis │ ├── MOD10A1_Snow_Cover_Daily_Tile.py │ ├── MOD10C1_Day_CMG_Snow_Cover.py │ ├── MOD10_L2_SnowCover_P.py │ ├── MOD29E1D_A2009340_005_2009341094922_SeaIce_Refl_NP.py │ ├── MOD29E1D_A2009340_005_2009341094922_SeaIce_Refl_SP.py │ ├── MOD29_A2013196_1250_005_2013196195940_hdf.py │ ├── MYD29P1D_A2010133_h09v07_005_2010135182659_1km_Sea_Ice_by_Refl.py │ ├── MYD29P1D_A2010133_h11v05_005_2010135032246_1km_Sea_Ice_by_Refl.py │ ├── MYD29P1D_A2011080_h07v28_005_2011081223614_Sea_Ice_by_Refl.py │ └── __init__.py └── nise │ ├── NISE_SSMISF17_20110424_Extent_NH.py │ ├── NISE_SSMISF17_20110424_Extent_SH.py │ └── __init__.py └── podaac ├── __init__.py ├── aquarius ├── Q2011280003000_L2_EVSCI_V1_2.py ├── Q2012034_L3m_DAY_EVSCI_V1_2DR_SSS_1deg.py └── __init__.py ├── avhrr ├── 2006001-2006005.s0454pfrt-bsst.hdf.py └── __init__.py ├── quikscat ├── QS_XWGRD3_2008001.20080021608.hdf.py └── __init__.py └── seawinds ├── SW_S3E_2003100.20053531923.hdf.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.pyc 3 | *.swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/README.md -------------------------------------------------------------------------------- /conda-recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/README.md -------------------------------------------------------------------------------- /conda-recipes/gdal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/build.sh -------------------------------------------------------------------------------- /conda-recipes/gdal/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/gdal/os1_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/os1_hw.py -------------------------------------------------------------------------------- /conda-recipes/gdal/sites.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/sites.dbf -------------------------------------------------------------------------------- /conda-recipes/gdal/sites.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/sites.sbn -------------------------------------------------------------------------------- /conda-recipes/gdal/sites.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/sites.sbx -------------------------------------------------------------------------------- /conda-recipes/gdal/sites.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/sites.shp -------------------------------------------------------------------------------- /conda-recipes/gdal/sites.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/gdal/sites.shx -------------------------------------------------------------------------------- /conda-recipes/geos/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/geos/build.sh -------------------------------------------------------------------------------- /conda-recipes/geos/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/geos/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/h5py/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/h5py/bld.bat -------------------------------------------------------------------------------- /conda-recipes/h5py/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export HDF5_DIR=$PREFIX 4 | 5 | $PYTHON setup.py install 6 | -------------------------------------------------------------------------------- /conda-recipes/h5py/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/h5py/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/h5py/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/h5py/run_test.py -------------------------------------------------------------------------------- /conda-recipes/hdf4/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf4/bld.bat -------------------------------------------------------------------------------- /conda-recipes/hdf4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf4/build.sh -------------------------------------------------------------------------------- /conda-recipes/hdf4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf4/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/hdf4/post-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf4/post-link.sh -------------------------------------------------------------------------------- /conda-recipes/hdf5/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf5/bld.bat -------------------------------------------------------------------------------- /conda-recipes/hdf5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf5/build.sh -------------------------------------------------------------------------------- /conda-recipes/hdf5/hdf5.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf5/hdf5.spec -------------------------------------------------------------------------------- /conda-recipes/hdf5/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/hdf5/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/libnetcdf/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/libnetcdf/bld.bat -------------------------------------------------------------------------------- /conda-recipes/libnetcdf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/libnetcdf/build.sh -------------------------------------------------------------------------------- /conda-recipes/libnetcdf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/libnetcdf/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/netcdf4-python/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/netcdf4-python/build.sh -------------------------------------------------------------------------------- /conda-recipes/netcdf4-python/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/netcdf4-python/meta.yaml -------------------------------------------------------------------------------- /conda-recipes/proj4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/proj4/build.sh -------------------------------------------------------------------------------- /conda-recipes/proj4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/conda-recipes/proj4/meta.yaml -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_examples 2 | -------------------------------------------------------------------------------- /testing/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/testing/fixtures.py -------------------------------------------------------------------------------- /testing/lpdaac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/lpdaac/mod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/lpdaac/mod/test_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/testing/lpdaac/mod/test_mod.py -------------------------------------------------------------------------------- /testing/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/testing/test_examples.py -------------------------------------------------------------------------------- /zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/airs/AIRS_L2_radiances_channel567.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/airs/AIRS_L2_radiances_channel567.py -------------------------------------------------------------------------------- /zoo/gesdisc/airs/AIRS_L3_RelHumid_A_Lvls11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/airs/AIRS_L3_RelHumid_A_Lvls11.py -------------------------------------------------------------------------------- /zoo/gesdisc/airs/AIRS_L3_Temperature_MW_A_Lvls11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/airs/AIRS_L3_Temperature_MW_A_Lvls11.py -------------------------------------------------------------------------------- /zoo/gesdisc/airs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/airs/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/buv/BUV_Nimbus04_L3zm_v01_00_2012m0203t144121_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/buv/BUV_Nimbus04_L3zm_v01_00_2012m0203t144121_h5.py -------------------------------------------------------------------------------- /zoo/gesdisc/buv/SBUV2_NOAA17_L2_SBUV2N17L2_2011m1231_v01_01_2012m0905t152911_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/buv/SBUV2_NOAA17_L2_SBUV2N17L2_2011m1231_v01_01_2012m0905t152911_h5.py -------------------------------------------------------------------------------- /zoo/gesdisc/buv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/buv/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/gosat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/gosat/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/gosat/acos_L2s_110101_02_Production_v110110_L2s2800_r01_PolB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/gosat/acos_L2s_110101_02_Production_v110110_L2s2800_r01_PolB.py -------------------------------------------------------------------------------- /zoo/gesdisc/gsstf/GSSTFYC_3_Year_1998_2008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/gsstf/GSSTFYC_3_Year_1998_2008.py -------------------------------------------------------------------------------- /zoo/gesdisc/gsstf/GSSTF_3_2008_12_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/gsstf/GSSTF_3_2008_12_31.py -------------------------------------------------------------------------------- /zoo/gesdisc/gsstf/GSSTF_NCEP_3_2008_12_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/gsstf/GSSTF_NCEP_3_2008_12_31.py -------------------------------------------------------------------------------- /zoo/gesdisc/gsstf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/gsstf/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/hirdls/HIRDLS_Aura_L2_v06_00_00_c01_2008d001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/hirdls/HIRDLS_Aura_L2_v06_00_00_c01_2008d001.py -------------------------------------------------------------------------------- /zoo/gesdisc/hirdls/HIRDLS_Aura_L3ZAD_v06_00_00_c02_2005d022_2008d077.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/hirdls/HIRDLS_Aura_L3ZAD_v06_00_00_c02_2005d022_2008d077.py -------------------------------------------------------------------------------- /zoo/gesdisc/hirdls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/hirdls/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/merra/MERRA_MFYC_TIME4_Height42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/merra/MERRA_MFYC_TIME4_Height42.py -------------------------------------------------------------------------------- /zoo/gesdisc/merra/MERRA_PLE_TIME1_Height72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/merra/MERRA_PLE_TIME1_Height72.py -------------------------------------------------------------------------------- /zoo/gesdisc/merra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/merra/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/mls/MLS_L2GP_v01_L2gpValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/mls/MLS_L2GP_v01_L2gpValue.py -------------------------------------------------------------------------------- /zoo/gesdisc/mls/MLS_L2GP_v02_L2gpValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/mls/MLS_L2GP_v02_L2gpValue.py -------------------------------------------------------------------------------- /zoo/gesdisc/mls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/mls/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/oco2/oco2_L2StdND_03945a_150330_B6000_150331024816.h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/oco2/oco2_L2StdND_03945a_150330_B6000_150331024816.h5.py -------------------------------------------------------------------------------- /zoo/gesdisc/omi/OMI_L2_OMNO2_CloudFraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/omi/OMI_L2_OMNO2_CloudFraction.py -------------------------------------------------------------------------------- /zoo/gesdisc/omi/OMI_L3_ColumnAmountO3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/omi/OMI_L3_ColumnAmountO3.py -------------------------------------------------------------------------------- /zoo/gesdisc/omi/OMI_OMCLDO2G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/omi/OMI_OMCLDO2G.py -------------------------------------------------------------------------------- /zoo/gesdisc/omi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/omi/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/swdb/DeepBlue_SeaWiFS_1_0_L3_20100101_v002_20110527T191319Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/swdb/DeepBlue_SeaWiFS_1_0_L3_20100101_v002_20110527T191319Z.py -------------------------------------------------------------------------------- /zoo/gesdisc/swdb/DeepBlue_SeaWiFS_L2_20101211T000331Z_v002_20110527T105357Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/swdb/DeepBlue_SeaWiFS_L2_20101211T000331Z_v002_20110527T105357Z.py -------------------------------------------------------------------------------- /zoo/gesdisc/swdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/swdb/__init__.py -------------------------------------------------------------------------------- /zoo/gesdisc/toms/TOMS_L3_Ozone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/toms/TOMS_L3_Ozone.py -------------------------------------------------------------------------------- /zoo/gesdisc/toms/__init__.py: -------------------------------------------------------------------------------- 1 | from . import TOMS_L3_Ozone 2 | -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_1B21_19971208_00170_7_HDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_1B21_19971208_00170_7_HDF.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_1B21_CSI_binDIDHmean_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_1B21_CSI_binDIDHmean_zoom.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_1B21_binDIDHmean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_1B21_binDIDHmean.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_2A12_20140308_92894_7_HDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_2A12_20140308_92894_7_HDF.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_2A12_cldWater_lvl9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_2A12_cldWater_lvl9.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_2A25_CSI_nearSurfZ_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_2A25_CSI_nearSurfZ_zoom.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_2B31_CSI_dHat_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_2B31_CSI_dHat_zoom.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_3A46_ssmiData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_3A46_ssmiData.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_3B42_precipitation_scan0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_3B42_precipitation_scan0.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/TRMM_3B43_precipitation_scan0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/TRMM_3B43_precipitation_scan0.py -------------------------------------------------------------------------------- /zoo/gesdisc/trmm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/gesdisc/trmm/__init__.py -------------------------------------------------------------------------------- /zoo/ghrc/__init__.py: -------------------------------------------------------------------------------- 1 | from . import lis 2 | -------------------------------------------------------------------------------- /zoo/ghrc/lis/GHRC_LISOTD_H_COM_F_lvl0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/ghrc/lis/GHRC_LISOTD_H_COM_F_lvl0.py -------------------------------------------------------------------------------- /zoo/ghrc/lis/__init__.py: -------------------------------------------------------------------------------- 1 | from . import GHRC_LISOTD_H_COM_F_lvl0 2 | -------------------------------------------------------------------------------- /zoo/laads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/__init__.py -------------------------------------------------------------------------------- /zoo/laads/mod/MOD05_L2_Water_Vapor_Near_Infrared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MOD05_L2_Water_Vapor_Near_Infrared.py -------------------------------------------------------------------------------- /zoo/laads/mod/MOD06_L2_Cloud_Optical_Thickness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MOD06_L2_Cloud_Optical_Thickness.py -------------------------------------------------------------------------------- /zoo/laads/mod/MOD07_L2_Retrieved_Moisture_Profile_Pressure_Lvl5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MOD07_L2_Retrieved_Moisture_Profile_Pressure_Lvl5.py -------------------------------------------------------------------------------- /zoo/laads/mod/MOD08_D3_Cloud_Fraction_Liquid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MOD08_D3_Cloud_Fraction_Liquid.py -------------------------------------------------------------------------------- /zoo/laads/mod/MOD21KM_EV_Band26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MOD21KM_EV_Band26.py -------------------------------------------------------------------------------- /zoo/laads/mod/MODARNSS_EV_1KM_Emissive_level0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MODARNSS_EV_1KM_Emissive_level0.py -------------------------------------------------------------------------------- /zoo/laads/mod/MODATML2_Cloud_Fraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/MODATML2_Cloud_Fraction.py -------------------------------------------------------------------------------- /zoo/laads/mod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/mod/__init__.py -------------------------------------------------------------------------------- /zoo/laads/myd/MYD021KM_EV_1KM_Emissive_level0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/MYD021KM_EV_1KM_Emissive_level0.py -------------------------------------------------------------------------------- /zoo/laads/myd/MYD021KM_EV_Band26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/MYD021KM_EV_Band26.py -------------------------------------------------------------------------------- /zoo/laads/myd/MYD02HKM_A2010031_0035_005_2010031183706_EV_500_RefSB_lvl0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/MYD02HKM_A2010031_0035_005_2010031183706_EV_500_RefSB_lvl0.py -------------------------------------------------------------------------------- /zoo/laads/myd/MYD07_L2_Water_Vapor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/MYD07_L2_Water_Vapor.py -------------------------------------------------------------------------------- /zoo/laads/myd/MYD08_D3_Cloud_Fraction_Liquid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/MYD08_D3_Cloud_Fraction_Liquid.py -------------------------------------------------------------------------------- /zoo/laads/myd/MYDARNSS_EV_1KM_Emissive_lvl9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/MYDARNSS_EV_1KM_Emissive_lvl9.py -------------------------------------------------------------------------------- /zoo/laads/myd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/myd/__init__.py -------------------------------------------------------------------------------- /zoo/laads/viirs/NPP_D16BRDF3_L3D_A2012241_h20v03_C1_03001_2012258151353.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/viirs/NPP_D16BRDF3_L3D_A2012241_h20v03_C1_03001_2012258151353.py -------------------------------------------------------------------------------- /zoo/laads/viirs/NPP_VSTIP_L2_A2012002_2340_P1_03001_2012022162425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/viirs/NPP_VSTIP_L2_A2012002_2340_P1_03001_2012022162425.py -------------------------------------------------------------------------------- /zoo/laads/viirs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/laads/viirs/__init__.py -------------------------------------------------------------------------------- /zoo/larc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/__init__.py -------------------------------------------------------------------------------- /zoo/larc/calipso/CAL_LID_L2_VFM-ValStage1-V3-02.2011-12-31T23-18-11ZD.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/calipso/CAL_LID_L2_VFM-ValStage1-V3-02.2011-12-31T23-18-11ZD.hdf.py -------------------------------------------------------------------------------- /zoo/larc/calipso/CAL_LID_L2_VFM-ValStage1-V3-02.2011-12-31T23-18-11ZD.hdf.v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/calipso/CAL_LID_L2_VFM-ValStage1-V3-02.2011-12-31T23-18-11ZD.hdf.v.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CERES_EBAF_netclr_lvl0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CERES_EBAF_netclr_lvl0.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_AVG_Aqua-FM3-MODIS_Edition2B_007005.200510.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_AVG_Aqua-FM3-MODIS_Edition2B_007005.200510.hdf.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ES4_Aqua-FM3_Edition1-CV_024032.200908.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ES4_Aqua-FM3_Edition1-CV_024032.200908.hdf.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ES4_TRMM_Longwave_Flux_2_5_R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ES4_TRMM_Longwave_Flux_2_5_R.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ISCCP_Day_LLO_Dep_Alt_M_Ham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ISCCP_Day_LLO_Dep_Alt_M_Ham.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ISCCP_Day_LLO_Dep_Alt_M_Sin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ISCCP_Day_LLO_Dep_Alt_M_Sin.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ISCCP_Day_LLO_Dep_Alt_M_equ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ISCCP_Day_LLO_Dep_Alt_M_equ.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ISCCP_GEO_Effective_Temperature_M_tt0_MHA0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ISCCP_GEO_Effective_Temperature_M_tt0_MHA0.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_SRBAVG3_1_0_Reg_MHA_CTP_MHA10_CS1_Ham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_SRBAVG3_1_0_Reg_MHA_CTP_MHA10_CS1_Ham.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_SYN_Aqua_OTF_LTC_Sky_lvl2_Ham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_SYN_Aqua_OTF_LTC_Sky_lvl2_Ham.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ZAVG_Aqua_1_0_Z_MHA_CLH_IPD_S0_N4_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ZAVG_Aqua_1_0_Z_MHA_CLH_IPD_S0_N4_line.py -------------------------------------------------------------------------------- /zoo/larc/ceres/CER_ZAVG_Aqua_1_0_Z_MHA_CLH_IPD_lvl0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/CER_ZAVG_Aqua_1_0_Z_MHA_CLH_IPD_lvl0.py -------------------------------------------------------------------------------- /zoo/larc/ceres/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/ceres/__init__.py -------------------------------------------------------------------------------- /zoo/larc/misr/MISR_AM1_AS_AEROSOL_P004_O066234_F12_0022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/misr/MISR_AM1_AS_AEROSOL_P004_O066234_F12_0022.py -------------------------------------------------------------------------------- /zoo/larc/misr/MISR_AM1_CGAL_2005_F06_0012.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/misr/MISR_AM1_CGAL_2005_F06_0012.hdf.py -------------------------------------------------------------------------------- /zoo/larc/misr/MISR_AM1_TC_ALBEDO_l50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/misr/MISR_AM1_TC_ALBEDO_l50.py -------------------------------------------------------------------------------- /zoo/larc/misr/MISR_ELLIPSOID_P117_F03_BlueRR_lvl0_179.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/misr/MISR_ELLIPSOID_P117_F03_BlueRR_lvl0_179.py -------------------------------------------------------------------------------- /zoo/larc/misr/MISR_ELLIPSOID_P117_F03_BlueRR_lvl0_179_AGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/misr/MISR_ELLIPSOID_P117_F03_BlueRR_lvl0_179_AGP.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/MOP02J_20131129_L2V16_2_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/MOP02J_20131129_L2V16_2_3.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/MOP02_20000303_L2V5_7_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/MOP02_20000303_L2V5_7_1.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/MOP03T_20131129_L3V4_2_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/MOP03T_20131129_L3V4_2_1.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/MOP03_CO_Profiles_Day_horizontal_lvl111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/MOP03_CO_Profiles_Day_horizontal_lvl111.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/MOP03_CO_Profiles_Day_lvl1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/MOP03_CO_Profiles_Day_lvl1.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/MOP03_CO_Profiles_Day_vertical_lvl178.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/MOP03_CO_Profiles_Day_vertical_lvl178.py -------------------------------------------------------------------------------- /zoo/larc/mopitt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/mopitt/__init__.py -------------------------------------------------------------------------------- /zoo/larc/tes/TES_Aura_L2_O3_Nadir_r0000011015_F05_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/tes/TES_Aura_L2_O3_Nadir_r0000011015_F05_07.py -------------------------------------------------------------------------------- /zoo/larc/tes/TES_L2_O3_line_lvls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/tes/TES_L2_O3_line_lvls.py -------------------------------------------------------------------------------- /zoo/larc/tes/TES_L3_CH4_SurfacePressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/tes/TES_L3_CH4_SurfacePressure.py -------------------------------------------------------------------------------- /zoo/larc/tes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/larc/tes/__init__.py -------------------------------------------------------------------------------- /zoo/lpdaac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/__init__.py -------------------------------------------------------------------------------- /zoo/lpdaac/ged/AGNS100_v003_64__089_0001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/ged/AGNS100_v003_64__089_0001.py -------------------------------------------------------------------------------- /zoo/lpdaac/ged/__init__.py: -------------------------------------------------------------------------------- 1 | from . import AGNS100_v003_64__089_0001 2 | -------------------------------------------------------------------------------- /zoo/lpdaac/mcd/MCD43A3_A2013305_h12v11_005_2013322102420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mcd/MCD43A3_A2013305_h12v11_005_2013322102420.py -------------------------------------------------------------------------------- /zoo/lpdaac/mcd/MCD43B4_Nadir_Reflectance_Band1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mcd/MCD43B4_Nadir_Reflectance_Band1.py -------------------------------------------------------------------------------- /zoo/lpdaac/mcd/MCD43C1_Black_Sky_Albedo_Num_Albedo_Bands1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mcd/MCD43C1_Black_Sky_Albedo_Num_Albedo_Bands1.py -------------------------------------------------------------------------------- /zoo/lpdaac/mcd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mcd/__init__.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD09GA_Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD09GA_Range.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD09GA_sur_refl_b01_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD09GA_sur_refl_b01_1.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD09GHK_sur_refl_01_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD09GHK_sur_refl_01_1.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD11C2_LST_Night_CMG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD11C2_LST_Night_CMG.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD11_L2_LST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD11_L2_LST.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD13A1_500m_16_days_EVI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD13A1_500m_16_days_EVI.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD13C2_CMG_0_05_Deg_Monthly_NDVI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD13C2_CMG_0_05_Deg_Monthly_NDVI.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD17A2_PsnNet_1km.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD17A2_PsnNet_1km.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/MOD43B4_Nadir_Reflectance_lvl5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/MOD43B4_Nadir_Reflectance_lvl5.py -------------------------------------------------------------------------------- /zoo/lpdaac/mod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/mod/__init__.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/MYD09A1_sur_refl_b02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/MYD09A1_sur_refl_b02.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/MYD09GQ_A2012246_h35v10_005_2012248075505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/MYD09GQ_A2012246_h35v10_005_2012248075505.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/MYD11C2_LST_Night_CMG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/MYD11C2_LST_Night_CMG.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/MYD11_L2_LST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/MYD11_L2_LST.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/MYD13A1_MODIS_Grid_16DAY_500m_NDVI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/MYD13A1_MODIS_Grid_16DAY_500m_NDVI.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/MYD17A2_Gpp_1km.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/MYD17A2_Gpp_1km.py -------------------------------------------------------------------------------- /zoo/lpdaac/myd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/myd/__init__.py -------------------------------------------------------------------------------- /zoo/lpdaac/vip/VIP01P4_A2010001_002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/vip/VIP01P4_A2010001_002.py -------------------------------------------------------------------------------- /zoo/lpdaac/vip/__init__.py: -------------------------------------------------------------------------------- 1 | from . import VIP01P4_A2010001_002 2 | -------------------------------------------------------------------------------- /zoo/lpdaac/weld/CONUS_annual_2012_h01v06_doy007to356_v1_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/lpdaac/weld/CONUS_annual_2012_h01v06_doy007to356_v1_5.py -------------------------------------------------------------------------------- /zoo/lpdaac/weld/__init__.py: -------------------------------------------------------------------------------- 1 | from . import CONUS_annual_2012_h01v06_doy007to356_v1_5 2 | -------------------------------------------------------------------------------- /zoo/nsidc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/__init__.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L2A_BrightnessTemperatures_V12_201110032238_D_hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L2A_BrightnessTemperatures_V12_201110032238_D_hdf.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L2_Ocean_V06_200206190029_D_High_res_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L2_Ocean_V06_200206190029_D_High_res_cloud.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_5DaySnow_NH_SWE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_5DaySnow_NH_SWE.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_DL_A_TB36_5H_Res_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_DL_A_TB36_5H_Res_1.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_DO_High_res_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_DO_High_res_cloud.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_MO_Med_res_vapor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_MO_Med_res_vapor.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_RG_TbOceanRain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_RG_TbOceanRain.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_SI_06km_NH_89V_DAY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_SI_06km_NH_89V_DAY.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_SI_12km_NH_18H_DSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_SI_12km_NH_18H_DSC.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_SI_12km_SH_36H_DAY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_SI_12km_SH_36H_DAY.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_SI_25km_NH_06V_ASC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_SI_25km_NH_06V_ASC.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/AMSR_E_L3_WO_High_res_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/AMSR_E_L3_WO_High_res_cloud.py -------------------------------------------------------------------------------- /zoo/nsidc/amsre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/amsre/__init__.py -------------------------------------------------------------------------------- /zoo/nsidc/icesat/GLAH13_633_2103_001_1317_0_01_0001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/icesat/GLAH13_633_2103_001_1317_0_01_0001.py -------------------------------------------------------------------------------- /zoo/nsidc/icesat/GLAH13_633_2103_001_1317_0_01_0001_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/icesat/GLAH13_633_2103_001_1317_0_01_0001_a.py -------------------------------------------------------------------------------- /zoo/nsidc/icesat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/icesat/__init__.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MOD10A1_Snow_Cover_Daily_Tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MOD10A1_Snow_Cover_Daily_Tile.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MOD10C1_Day_CMG_Snow_Cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MOD10C1_Day_CMG_Snow_Cover.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MOD10_L2_SnowCover_P.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MOD10_L2_SnowCover_P.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MOD29E1D_A2009340_005_2009341094922_SeaIce_Refl_NP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MOD29E1D_A2009340_005_2009341094922_SeaIce_Refl_NP.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MOD29E1D_A2009340_005_2009341094922_SeaIce_Refl_SP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MOD29E1D_A2009340_005_2009341094922_SeaIce_Refl_SP.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MOD29_A2013196_1250_005_2013196195940_hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MOD29_A2013196_1250_005_2013196195940_hdf.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MYD29P1D_A2010133_h09v07_005_2010135182659_1km_Sea_Ice_by_Refl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MYD29P1D_A2010133_h09v07_005_2010135182659_1km_Sea_Ice_by_Refl.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MYD29P1D_A2010133_h11v05_005_2010135032246_1km_Sea_Ice_by_Refl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MYD29P1D_A2010133_h11v05_005_2010135032246_1km_Sea_Ice_by_Refl.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/MYD29P1D_A2011080_h07v28_005_2011081223614_Sea_Ice_by_Refl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/MYD29P1D_A2011080_h07v28_005_2011081223614_Sea_Ice_by_Refl.py -------------------------------------------------------------------------------- /zoo/nsidc/modis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/modis/__init__.py -------------------------------------------------------------------------------- /zoo/nsidc/nise/NISE_SSMISF17_20110424_Extent_NH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/nise/NISE_SSMISF17_20110424_Extent_NH.py -------------------------------------------------------------------------------- /zoo/nsidc/nise/NISE_SSMISF17_20110424_Extent_SH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/nise/NISE_SSMISF17_20110424_Extent_SH.py -------------------------------------------------------------------------------- /zoo/nsidc/nise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/nsidc/nise/__init__.py -------------------------------------------------------------------------------- /zoo/podaac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/__init__.py -------------------------------------------------------------------------------- /zoo/podaac/aquarius/Q2011280003000_L2_EVSCI_V1_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/aquarius/Q2011280003000_L2_EVSCI_V1_2.py -------------------------------------------------------------------------------- /zoo/podaac/aquarius/Q2012034_L3m_DAY_EVSCI_V1_2DR_SSS_1deg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/aquarius/Q2012034_L3m_DAY_EVSCI_V1_2DR_SSS_1deg.py -------------------------------------------------------------------------------- /zoo/podaac/aquarius/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/aquarius/__init__.py -------------------------------------------------------------------------------- /zoo/podaac/avhrr/2006001-2006005.s0454pfrt-bsst.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/avhrr/2006001-2006005.s0454pfrt-bsst.hdf.py -------------------------------------------------------------------------------- /zoo/podaac/avhrr/__init__.py: -------------------------------------------------------------------------------- 1 | from . import PODAAC_L3_bsst 2 | -------------------------------------------------------------------------------- /zoo/podaac/quikscat/QS_XWGRD3_2008001.20080021608.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/quikscat/QS_XWGRD3_2008001.20080021608.hdf.py -------------------------------------------------------------------------------- /zoo/podaac/quikscat/__init__.py: -------------------------------------------------------------------------------- 1 | from . import QS_XWGRDS_des_avg_wind_speed 2 | -------------------------------------------------------------------------------- /zoo/podaac/seawinds/SW_S3E_2003100.20053531923.hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quintusdias/hdfeos_python_zoo/HEAD/zoo/podaac/seawinds/SW_S3E_2003100.20053531923.hdf.py -------------------------------------------------------------------------------- /zoo/podaac/seawinds/__init__.py: -------------------------------------------------------------------------------- 1 | from . import SW_S3E_rep_wind_speed_lvl0 2 | --------------------------------------------------------------------------------