├── .gitignore ├── README.md ├── README_code.md ├── ancillary ├── NWMv2.1_42YrRetrospective_OutputVarsFullPhysicsRun.pdf ├── hydro.namelist.example └── namelist.hrldas.example ├── chrtout ├── chrtout_report.log ├── chrtout_script_pbs.sh ├── chrtout_submit_pbs.py ├── chrtout_to_zarr.py └── chrtout_verification.log ├── gwout ├── gwout_report.log ├── gwout_script_pbs.sh ├── gwout_submit_pbs.py ├── gwout_to_zarr.py └── gwout_verification.log ├── lakeout ├── lakeout_report.log ├── lakeout_script_pbs.sh ├── lakeout_submit_pbs.py ├── lakeout_to_zarr.py └── lakeout_verification.log ├── ldasout ├── ldasout_report.log ├── ldasout_script_pbs.sh ├── ldasout_submit_pbs.py ├── ldasout_to_zarr.py ├── ldasout_verification_0.log ├── ldasout_verification_1.log ├── ldasout_verification_2.log ├── ldasout_verification_3.log └── ldasout_verification_array.sh ├── notebooks ├── chrtout_access_times_dask.ipynb ├── data_description.ipynb ├── data_description_detail.ipynb ├── usage_example_rerechunk_chrtout.ipynb └── usage_example_streamflow_timeseries.ipynb ├── precip ├── fix_repeat_date.py ├── precip_fix_lock.py ├── precip_report.log ├── precip_script_pbs.sh ├── precip_submit_pbs.py ├── precip_to_zarr.py ├── precip_verification.log └── symlink_aorc.py ├── report_output.py ├── requirements.txt ├── requirements_vis.txt ├── rtout ├── rtout_report.log ├── rtout_script_pbs.sh ├── rtout_submit_pbs.py ├── rtout_to_zarr.py ├── rtout_to_zarr_fix.py ├── rtout_verification_0.log ├── rtout_verification_1.log ├── rtout_verification_2.log └── rtout_verification_3.log └── verify_output.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/README.md -------------------------------------------------------------------------------- /README_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/README_code.md -------------------------------------------------------------------------------- /ancillary/NWMv2.1_42YrRetrospective_OutputVarsFullPhysicsRun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ancillary/NWMv2.1_42YrRetrospective_OutputVarsFullPhysicsRun.pdf -------------------------------------------------------------------------------- /ancillary/hydro.namelist.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ancillary/hydro.namelist.example -------------------------------------------------------------------------------- /ancillary/namelist.hrldas.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ancillary/namelist.hrldas.example -------------------------------------------------------------------------------- /chrtout/chrtout_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/chrtout/chrtout_report.log -------------------------------------------------------------------------------- /chrtout/chrtout_script_pbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/chrtout/chrtout_script_pbs.sh -------------------------------------------------------------------------------- /chrtout/chrtout_submit_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/chrtout/chrtout_submit_pbs.py -------------------------------------------------------------------------------- /chrtout/chrtout_to_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/chrtout/chrtout_to_zarr.py -------------------------------------------------------------------------------- /chrtout/chrtout_verification.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/chrtout/chrtout_verification.log -------------------------------------------------------------------------------- /gwout/gwout_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/gwout/gwout_report.log -------------------------------------------------------------------------------- /gwout/gwout_script_pbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/gwout/gwout_script_pbs.sh -------------------------------------------------------------------------------- /gwout/gwout_submit_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/gwout/gwout_submit_pbs.py -------------------------------------------------------------------------------- /gwout/gwout_to_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/gwout/gwout_to_zarr.py -------------------------------------------------------------------------------- /gwout/gwout_verification.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/gwout/gwout_verification.log -------------------------------------------------------------------------------- /lakeout/lakeout_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/lakeout/lakeout_report.log -------------------------------------------------------------------------------- /lakeout/lakeout_script_pbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/lakeout/lakeout_script_pbs.sh -------------------------------------------------------------------------------- /lakeout/lakeout_submit_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/lakeout/lakeout_submit_pbs.py -------------------------------------------------------------------------------- /lakeout/lakeout_to_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/lakeout/lakeout_to_zarr.py -------------------------------------------------------------------------------- /lakeout/lakeout_verification.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/lakeout/lakeout_verification.log -------------------------------------------------------------------------------- /ldasout/ldasout_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_report.log -------------------------------------------------------------------------------- /ldasout/ldasout_script_pbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_script_pbs.sh -------------------------------------------------------------------------------- /ldasout/ldasout_submit_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_submit_pbs.py -------------------------------------------------------------------------------- /ldasout/ldasout_to_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_to_zarr.py -------------------------------------------------------------------------------- /ldasout/ldasout_verification_0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_verification_0.log -------------------------------------------------------------------------------- /ldasout/ldasout_verification_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_verification_1.log -------------------------------------------------------------------------------- /ldasout/ldasout_verification_2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_verification_2.log -------------------------------------------------------------------------------- /ldasout/ldasout_verification_3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_verification_3.log -------------------------------------------------------------------------------- /ldasout/ldasout_verification_array.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/ldasout/ldasout_verification_array.sh -------------------------------------------------------------------------------- /notebooks/chrtout_access_times_dask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/notebooks/chrtout_access_times_dask.ipynb -------------------------------------------------------------------------------- /notebooks/data_description.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/notebooks/data_description.ipynb -------------------------------------------------------------------------------- /notebooks/data_description_detail.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/notebooks/data_description_detail.ipynb -------------------------------------------------------------------------------- /notebooks/usage_example_rerechunk_chrtout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/notebooks/usage_example_rerechunk_chrtout.ipynb -------------------------------------------------------------------------------- /notebooks/usage_example_streamflow_timeseries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/notebooks/usage_example_streamflow_timeseries.ipynb -------------------------------------------------------------------------------- /precip/fix_repeat_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/fix_repeat_date.py -------------------------------------------------------------------------------- /precip/precip_fix_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/precip_fix_lock.py -------------------------------------------------------------------------------- /precip/precip_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/precip_report.log -------------------------------------------------------------------------------- /precip/precip_script_pbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/precip_script_pbs.sh -------------------------------------------------------------------------------- /precip/precip_submit_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/precip_submit_pbs.py -------------------------------------------------------------------------------- /precip/precip_to_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/precip_to_zarr.py -------------------------------------------------------------------------------- /precip/precip_verification.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/precip_verification.log -------------------------------------------------------------------------------- /precip/symlink_aorc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/precip/symlink_aorc.py -------------------------------------------------------------------------------- /report_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/report_output.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_vis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/requirements_vis.txt -------------------------------------------------------------------------------- /rtout/rtout_report.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_report.log -------------------------------------------------------------------------------- /rtout/rtout_script_pbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_script_pbs.sh -------------------------------------------------------------------------------- /rtout/rtout_submit_pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_submit_pbs.py -------------------------------------------------------------------------------- /rtout/rtout_to_zarr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_to_zarr.py -------------------------------------------------------------------------------- /rtout/rtout_to_zarr_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_to_zarr_fix.py -------------------------------------------------------------------------------- /rtout/rtout_verification_0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_verification_0.log -------------------------------------------------------------------------------- /rtout/rtout_verification_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_verification_1.log -------------------------------------------------------------------------------- /rtout/rtout_verification_2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_verification_2.log -------------------------------------------------------------------------------- /rtout/rtout_verification_3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/rtout/rtout_verification_3.log -------------------------------------------------------------------------------- /verify_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/rechunk_retro_nwm_v21/HEAD/verify_output.py --------------------------------------------------------------------------------