Skip to content

Commit

Permalink
adding w/e s/n instead of start/end to help
Browse files Browse the repository at this point in the history
  • Loading branch information
negin513 committed Jun 30, 2022
1 parent b8c9115 commit 7682185
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/ctsm/subset_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def get_parser():
# -- region-specific parser options
rg_parser.add_argument(
"--lat1",
help="Region start latitude. [default: %(default)s]",
help="Region southernmost latitude. [default: %(default)s]",
action="store",
dest="lat1",
required=False,
Expand All @@ -179,7 +179,7 @@ def get_parser():
)
rg_parser.add_argument(
"--lat2",
help="Region end latitude. [default: %(default)s]",
help="Region northernmost latitude. [default: %(default)s]",
action="store",
dest="lat2",
required=False,
Expand All @@ -188,7 +188,7 @@ def get_parser():
)
rg_parser.add_argument(
"--lon1",
help="Region start longitude. [default: %(default)s]",
help="Region westernmost longitude. [default: %(default)s]",
action="store",
dest="lon1",
required=False,
Expand All @@ -197,7 +197,7 @@ def get_parser():
)
rg_parser.add_argument(
"--lon2",
help="Region end longitude. [default: %(default)s]",
help="Region easternmost longitude. [default: %(default)s]",
action="store",
dest="lon2",
required=False,
Expand Down

0 comments on commit 7682185

Please sign in to comment.