-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
preprocess: Support centering netcdf crop window arbitrarily and adde…
…d additional documentation to config file and docstrings. Added project to grid function
- Loading branch information
1 parent
ef52f0b
commit eb01bfa
Showing
2 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
[CropFiles] | ||
# Full relative directory is data/input_dir, data/output_dir | ||
input_dir = "ims_1km" | ||
output_dir = "ims_netcdf_1km_cropped_4_000_000km_window" | ||
window_size = 4000 | ||
# Change this output_dir name to reflect the window size and center coordinates selected | ||
output_dir = "ims_netcdf_1km_cropped_4_000_000m_window" | ||
|
||
# Final shape will be (window_size*2, window_size*2) | ||
window_size = 4000 #km | ||
|
||
# Expect str format in x,y coordinates if provided. Example: "1000, 2000" | ||
# Defaults to center of current grid system if "None" | ||
center_coordinates = "1000, 1500"#None" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters