Skip to content

Commit

Permalink
added defaults to make_geogrid and updated namelsit.wps
Browse files Browse the repository at this point in the history
  • Loading branch information
jmills-ncar committed Jun 14, 2018
1 parent 5f52fb8 commit 7f7a414
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 2 additions & 3 deletions wps/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ The WPS `geogrid.exe` utility is controlled by options set in the `namelist.wps`
map_proj = 'lambert',
truelat1 = 30.0,
truelat2 = 60.0,
stand_lon = -97.00
stand_lon = -97.00,
/
```
----------
Expand All @@ -77,7 +76,7 @@ The WPS `geogrid.exe` utility is controlled by options set in the `namelist.wps`
** Step 1:** Create a directory to bind-mount to Docker for passing files between your system and docker

```
mkdir ~/dockerMount
mkdir /home/dockerMount
```

**Step 2: Create a namelist.wps file for your domain using the above example as a starting point and save it in your mount directory from step 1.**
Expand Down
2 changes: 2 additions & 0 deletions wps/make_geogrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,11 @@ def main():
parser = ArgumentParser()
parser.add_argument("--namelist_path",
dest="namelist_path",
default='/home/docker/mount/namelist.wps',
help="Path to namelist file containing the namelist.wps updates")
parser.add_argument("--output_dir",
dest="output_dir",
default='/home/docker/mount/',
help="Path to directory to hold outputs")
parser.add_argument("--plot_only",
dest="plot_only",
Expand Down

0 comments on commit 7f7a414

Please sign in to comment.