You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5
5
6
+
## [1.10.2]
7
+
### Fixed
8
+
- Fixed an issue where using a default global bounding box prevented download of data that didn't use the horizontal spatial domain [87](https://github.com/podaac/data-subscriber/issues/87)
9
+
- Fixed limit option not being respected. [86](https://github.com/podaac/data-subscriber/issues/86)
help="The ISO date time after which data should be retrieved. For Example, --end-date 2021-01-14T00:00:00Z") # noqa E501
69
-
66
+
70
67
# Adding optional arguments
71
68
parser.add_argument("-f", "--force", dest="force", action="store_true", help="Flag to force downloading files that are listed in CMR query, even if the file exists and checksum matches") # noqa E501
help="The bounding rectangle to filter result in. Format is W Longitude,S Latitude,E Longitude,N Latitude without spaces. Due to an issue with parsing arguments, to use this command, please use the -b=\"-180,-90,180,90\" syntax when calling from the command line. Default: \"-180,-90,180,90\".",
76
-
default="-180,-90,180,90") # noqa E501
73
+
default=None) # noqa E501
77
74
78
75
# Arguments for how data are stored locally - much processing is based on
79
76
# the underlying directory structure (e.g. year/Day-of-year)
help="The bounding rectangle to filter result in. Format is W Longitude,S Latitude,E Longitude,N Latitude without spaces. Due to an issue with parsing arguments, to use this command, please use the -b=\"-180,-90,180,90\" syntax when calling from the command line. Default: \"-180,-90,180,90\".",
76
-
default="-180,-90,180,90") # noqa E501
76
+
default=None) # noqa E501
77
77
78
78
# Arguments for how data are stored locally - much processing is based on
79
79
# the underlying directory structure (e.g. year/Day-of-year)
@@ -178,46 +178,36 @@ def run(args=None):
178
178
else:
179
179
logging.warning("No .update__"+short_name+" in the data directory. (Is this the first run?)")
180
180
181
-
# Change this to whatever extent you need. Format is W Longitude,S Latitude,E Longitude,N Latitude
182
-
bounding_extent=args.bbox
183
-
184
-
# There are several ways to query for CMR updates that occured during a given timeframe. Read on in the CMR Search documentation:
0 commit comments