├── .gitignore ├── Config └── WCOSS │ ├── v2.1 │ ├── template_forcing_engine_Analysis.config │ ├── template_forcing_engine_Hawaii_Analysis.config │ ├── template_forcing_engine_Hawaii_Short.config │ ├── template_forcing_engine_Long.config │ ├── template_forcing_engine_Medium.config │ ├── template_forcing_engine_PuertoRico_Analysis.config │ ├── template_forcing_engine_PuertoRico_Short.config │ └── template_forcing_engine_Short.config │ ├── v3.0 │ ├── template_forcing_engine_2min.config │ ├── template_forcing_engine_Alaska_Analysis.config │ ├── template_forcing_engine_Alaska_ExtAnalysis.config │ ├── template_forcing_engine_Alaska_Medium.config │ ├── template_forcing_engine_Alaska_Medium_Blend.config │ ├── template_forcing_engine_Alaska_Short.config │ ├── template_forcing_engine_Analysis.config │ ├── template_forcing_engine_GFS_13KM.config │ ├── template_forcing_engine_HRRR15min.config │ ├── template_forcing_engine_Hawaii_Analysis.config │ ├── template_forcing_engine_Hawaii_Short.config │ ├── template_forcing_engine_Long.config │ ├── template_forcing_engine_Medium.config │ ├── template_forcing_engine_Medium_Blend.config │ ├── template_forcing_engine_PuertoRico_Analysis.config │ ├── template_forcing_engine_PuertoRico_Short.config │ └── template_forcing_engine_Short.config │ └── v3.1 │ ├── template_forcing_engine_2min.config │ ├── template_forcing_engine_Alaska_Analysis.config │ ├── template_forcing_engine_Alaska_ExtAnalysis.config │ ├── template_forcing_engine_Alaska_Medium.config │ ├── template_forcing_engine_Alaska_Medium_Blend.config │ ├── template_forcing_engine_Alaska_Short.config │ ├── template_forcing_engine_Analysis.config │ ├── template_forcing_engine_GFS_13KM.config │ ├── template_forcing_engine_HRRR15min.config │ ├── template_forcing_engine_Hawaii_Analysis.config │ ├── template_forcing_engine_Hawaii_Short.config │ ├── template_forcing_engine_Long.config │ ├── template_forcing_engine_Medium_GFS-Blend.config │ ├── template_forcing_engine_Medium_GFS-NDFD.config │ ├── template_forcing_engine_Medium_GFS-Only.config │ ├── template_forcing_engine_PuertoRico_Analysis.config │ ├── template_forcing_engine_PuertoRico_Short.config │ └── template_forcing_engine_Short.config ├── LICENSE.md ├── Template ├── template_forcing_engine.config └── template_forcing_engine_NBM_test.config ├── Test ├── AK │ ├── ana │ │ ├── advance_cymdh.pl │ │ ├── ana_crontab.txt │ │ ├── run_FE_AK_AnA_nodes.pbs │ │ ├── run_ak_ana_test.sh │ │ ├── template_forcing_engine_AK_AnA_hourly.config │ │ └── template_forcing_engine_AK_AnA_hourly.config.bak │ ├── extana │ │ ├── advance_cymdh.pl │ │ ├── run_FE_AK_ExtAnA_nodes.pbs │ │ ├── run_dates_FE_AK_ExtAnA.sh │ │ ├── run_ext_ana_test.sh │ │ ├── template_forcing_engine_AK_ExtAnA_hourly.config │ │ └── template_forcing_engine_AK_ExtAnA_hourly.config.bak │ ├── medium │ │ ├── run_nbm_ak_test.sh │ │ ├── template_forcing_engine_NBM_AK_test2.config │ │ └── template_forcing_engine_NBM_CONUS_test2.config │ └── short │ │ ├── run_nbm_ak_test.sh │ │ └── template_forcing_engine_NBM_AK_test.config ├── randomize_fields.py ├── run_regrid_estofs_mpi.sh └── template_forcing_engine_Medium.config ├── Util ├── blend_mpe_extAnA.py ├── get_ARW_Hawaii.py ├── get_ARW_Puerto_Rico.py ├── get_CFSv2.py ├── get_conus_HRRR.py ├── get_conus_MRMS_GC.py ├── get_conus_MRMS_RQI.py ├── get_conus_MRMS_Radar.py ├── get_conus_RAP.py ├── get_prod_GFS.py ├── get_prod_NAM_Nest_Alaska.py ├── get_prod_NAM_Nest_Hawaii.py ├── get_prod_NAM_Nest_PuertoRico.py └── pull_s3_grib_vars.py ├── core ├── __init__.py ├── bias_correction.py ├── config.py ├── disaggregateMod.py ├── downscale.py ├── err_handler.py ├── forcingInputMod.py ├── forecastMod.py ├── geoMod.py ├── ioMod.py ├── layeringMod.py ├── parallel.py ├── regrid.py ├── suppPrecipMod.py ├── timeInterpMod.py └── time_handling.py ├── genForcing.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | .DS_Store 3 | __pycache__ 4 | *.err 5 | *.out 6 | *~ 7 | -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_Hawaii_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_Hawaii_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_Hawaii_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_Hawaii_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_Long.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_Long.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_Medium.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_Medium.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_PuertoRico_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_PuertoRico_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_PuertoRico_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_PuertoRico_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v2.1/template_forcing_engine_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v2.1/template_forcing_engine_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_2min.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_2min.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Alaska_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Alaska_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Alaska_ExtAnalysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Alaska_ExtAnalysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Alaska_Medium.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Alaska_Medium.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Alaska_Medium_Blend.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Alaska_Medium_Blend.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Alaska_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Alaska_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_GFS_13KM.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_GFS_13KM.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_HRRR15min.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_HRRR15min.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Hawaii_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Hawaii_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Hawaii_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Hawaii_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Long.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Long.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Medium.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Medium.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Medium_Blend.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Medium_Blend.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_PuertoRico_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_PuertoRico_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_PuertoRico_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_PuertoRico_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.0/template_forcing_engine_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.0/template_forcing_engine_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_2min.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_2min.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Alaska_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Alaska_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Alaska_ExtAnalysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Alaska_ExtAnalysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Alaska_Medium.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Alaska_Medium.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Alaska_Medium_Blend.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Alaska_Medium_Blend.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Alaska_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Alaska_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_GFS_13KM.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_GFS_13KM.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_HRRR15min.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_HRRR15min.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Hawaii_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Hawaii_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Hawaii_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Hawaii_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Long.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Long.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Medium_GFS-Blend.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Medium_GFS-Blend.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Medium_GFS-NDFD.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Medium_GFS-NDFD.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Medium_GFS-Only.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Medium_GFS-Only.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_PuertoRico_Analysis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_PuertoRico_Analysis.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_PuertoRico_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_PuertoRico_Short.config -------------------------------------------------------------------------------- /Config/WCOSS/v3.1/template_forcing_engine_Short.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Config/WCOSS/v3.1/template_forcing_engine_Short.config -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Template/template_forcing_engine.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Template/template_forcing_engine.config -------------------------------------------------------------------------------- /Template/template_forcing_engine_NBM_test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Template/template_forcing_engine_NBM_test.config -------------------------------------------------------------------------------- /Test/AK/ana/advance_cymdh.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/ana/advance_cymdh.pl -------------------------------------------------------------------------------- /Test/AK/ana/ana_crontab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/ana/ana_crontab.txt -------------------------------------------------------------------------------- /Test/AK/ana/run_FE_AK_AnA_nodes.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/ana/run_FE_AK_AnA_nodes.pbs -------------------------------------------------------------------------------- /Test/AK/ana/run_ak_ana_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/ana/run_ak_ana_test.sh -------------------------------------------------------------------------------- /Test/AK/ana/template_forcing_engine_AK_AnA_hourly.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/ana/template_forcing_engine_AK_AnA_hourly.config -------------------------------------------------------------------------------- /Test/AK/ana/template_forcing_engine_AK_AnA_hourly.config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/ana/template_forcing_engine_AK_AnA_hourly.config.bak -------------------------------------------------------------------------------- /Test/AK/extana/advance_cymdh.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/extana/advance_cymdh.pl -------------------------------------------------------------------------------- /Test/AK/extana/run_FE_AK_ExtAnA_nodes.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/extana/run_FE_AK_ExtAnA_nodes.pbs -------------------------------------------------------------------------------- /Test/AK/extana/run_dates_FE_AK_ExtAnA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/extana/run_dates_FE_AK_ExtAnA.sh -------------------------------------------------------------------------------- /Test/AK/extana/run_ext_ana_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/extana/run_ext_ana_test.sh -------------------------------------------------------------------------------- /Test/AK/extana/template_forcing_engine_AK_ExtAnA_hourly.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/extana/template_forcing_engine_AK_ExtAnA_hourly.config -------------------------------------------------------------------------------- /Test/AK/extana/template_forcing_engine_AK_ExtAnA_hourly.config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/extana/template_forcing_engine_AK_ExtAnA_hourly.config.bak -------------------------------------------------------------------------------- /Test/AK/medium/run_nbm_ak_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/medium/run_nbm_ak_test.sh -------------------------------------------------------------------------------- /Test/AK/medium/template_forcing_engine_NBM_AK_test2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/medium/template_forcing_engine_NBM_AK_test2.config -------------------------------------------------------------------------------- /Test/AK/medium/template_forcing_engine_NBM_CONUS_test2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/medium/template_forcing_engine_NBM_CONUS_test2.config -------------------------------------------------------------------------------- /Test/AK/short/run_nbm_ak_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/short/run_nbm_ak_test.sh -------------------------------------------------------------------------------- /Test/AK/short/template_forcing_engine_NBM_AK_test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/AK/short/template_forcing_engine_NBM_AK_test.config -------------------------------------------------------------------------------- /Test/randomize_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/randomize_fields.py -------------------------------------------------------------------------------- /Test/run_regrid_estofs_mpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/run_regrid_estofs_mpi.sh -------------------------------------------------------------------------------- /Test/template_forcing_engine_Medium.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Test/template_forcing_engine_Medium.config -------------------------------------------------------------------------------- /Util/blend_mpe_extAnA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/blend_mpe_extAnA.py -------------------------------------------------------------------------------- /Util/get_ARW_Hawaii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_ARW_Hawaii.py -------------------------------------------------------------------------------- /Util/get_ARW_Puerto_Rico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_ARW_Puerto_Rico.py -------------------------------------------------------------------------------- /Util/get_CFSv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_CFSv2.py -------------------------------------------------------------------------------- /Util/get_conus_HRRR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_conus_HRRR.py -------------------------------------------------------------------------------- /Util/get_conus_MRMS_GC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_conus_MRMS_GC.py -------------------------------------------------------------------------------- /Util/get_conus_MRMS_RQI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_conus_MRMS_RQI.py -------------------------------------------------------------------------------- /Util/get_conus_MRMS_Radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_conus_MRMS_Radar.py -------------------------------------------------------------------------------- /Util/get_conus_RAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_conus_RAP.py -------------------------------------------------------------------------------- /Util/get_prod_GFS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_prod_GFS.py -------------------------------------------------------------------------------- /Util/get_prod_NAM_Nest_Alaska.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_prod_NAM_Nest_Alaska.py -------------------------------------------------------------------------------- /Util/get_prod_NAM_Nest_Hawaii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_prod_NAM_Nest_Hawaii.py -------------------------------------------------------------------------------- /Util/get_prod_NAM_Nest_PuertoRico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/get_prod_NAM_Nest_PuertoRico.py -------------------------------------------------------------------------------- /Util/pull_s3_grib_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/Util/pull_s3_grib_vars.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bias_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/bias_correction.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/config.py -------------------------------------------------------------------------------- /core/disaggregateMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/disaggregateMod.py -------------------------------------------------------------------------------- /core/downscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/downscale.py -------------------------------------------------------------------------------- /core/err_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/err_handler.py -------------------------------------------------------------------------------- /core/forcingInputMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/forcingInputMod.py -------------------------------------------------------------------------------- /core/forecastMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/forecastMod.py -------------------------------------------------------------------------------- /core/geoMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/geoMod.py -------------------------------------------------------------------------------- /core/ioMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/ioMod.py -------------------------------------------------------------------------------- /core/layeringMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/layeringMod.py -------------------------------------------------------------------------------- /core/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/parallel.py -------------------------------------------------------------------------------- /core/regrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/regrid.py -------------------------------------------------------------------------------- /core/suppPrecipMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/suppPrecipMod.py -------------------------------------------------------------------------------- /core/timeInterpMod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/timeInterpMod.py -------------------------------------------------------------------------------- /core/time_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/core/time_handling.py -------------------------------------------------------------------------------- /genForcing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/genForcing.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/WrfHydroForcing/HEAD/setup.py --------------------------------------------------------------------------------