├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── netrc_utils.R ├── nldasR.R ├── resampleDataMod.R ├── subset_sequence.R ├── subsetter.R └── utils.R ├── README.Rmd ├── README.md ├── inst ├── GeneralPurpose.R └── WRR_research_example.R ├── man ├── call_gdal_mod.Rd ├── checkNetrc.Rd ├── dim_names.Rd ├── download_conus_nwm.Rd ├── figures │ ├── README-unnamed-chunk-3-1.png │ └── README-unnamed-chunk-5-1.png ├── geo_grid_proj.Rd ├── getNetrcPath.Rd ├── latest_nwm_version.Rd ├── make_empty_geogrid_raster.Rd ├── mask_geogrid_byWS.Rd ├── nc_to_df.Rd ├── output_grid.Rd ├── read_wt_file.Rd ├── resampleDataMod.Rd ├── subset_sequence.Rd ├── subset_weights.Rd ├── subset_wrf_hydro_domain.Rd ├── summarize.cells.Rd ├── timestep.Rd ├── update_nc.Rd ├── var_names.Rd └── writeNetrc.Rd ├── nwm_land_use_mappings.xlsx ├── water-balance-code.R └── wrfhydroSubsetter.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/netrc_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/R/netrc_utils.R -------------------------------------------------------------------------------- /R/nldasR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/R/nldasR.R -------------------------------------------------------------------------------- /R/resampleDataMod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/R/resampleDataMod.R -------------------------------------------------------------------------------- /R/subset_sequence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/R/subset_sequence.R -------------------------------------------------------------------------------- /R/subsetter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/R/subsetter.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/README.md -------------------------------------------------------------------------------- /inst/GeneralPurpose.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/inst/GeneralPurpose.R -------------------------------------------------------------------------------- /inst/WRR_research_example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/inst/WRR_research_example.R -------------------------------------------------------------------------------- /man/call_gdal_mod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/call_gdal_mod.Rd -------------------------------------------------------------------------------- /man/checkNetrc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/checkNetrc.Rd -------------------------------------------------------------------------------- /man/dim_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/dim_names.Rd -------------------------------------------------------------------------------- /man/download_conus_nwm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/download_conus_nwm.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/geo_grid_proj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/geo_grid_proj.Rd -------------------------------------------------------------------------------- /man/getNetrcPath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/getNetrcPath.Rd -------------------------------------------------------------------------------- /man/latest_nwm_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/latest_nwm_version.Rd -------------------------------------------------------------------------------- /man/make_empty_geogrid_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/make_empty_geogrid_raster.Rd -------------------------------------------------------------------------------- /man/mask_geogrid_byWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/mask_geogrid_byWS.Rd -------------------------------------------------------------------------------- /man/nc_to_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/nc_to_df.Rd -------------------------------------------------------------------------------- /man/output_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/output_grid.Rd -------------------------------------------------------------------------------- /man/read_wt_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/read_wt_file.Rd -------------------------------------------------------------------------------- /man/resampleDataMod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/resampleDataMod.Rd -------------------------------------------------------------------------------- /man/subset_sequence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/subset_sequence.Rd -------------------------------------------------------------------------------- /man/subset_weights.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/subset_weights.Rd -------------------------------------------------------------------------------- /man/subset_wrf_hydro_domain.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/subset_wrf_hydro_domain.Rd -------------------------------------------------------------------------------- /man/summarize.cells.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/summarize.cells.Rd -------------------------------------------------------------------------------- /man/timestep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/timestep.Rd -------------------------------------------------------------------------------- /man/update_nc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/update_nc.Rd -------------------------------------------------------------------------------- /man/var_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/var_names.Rd -------------------------------------------------------------------------------- /man/writeNetrc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/man/writeNetrc.Rd -------------------------------------------------------------------------------- /nwm_land_use_mappings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/nwm_land_use_mappings.xlsx -------------------------------------------------------------------------------- /water-balance-code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/water-balance-code.R -------------------------------------------------------------------------------- /wrfhydroSubsetter.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikejohnson51/wrfhydroSubsetter/HEAD/wrfhydroSubsetter.Rproj --------------------------------------------------------------------------------