@@ -47,15 +47,15 @@ def gran_IDs(grans, ids=False, cycles=False, tracks=False, dates=False, cloud=Fa
4747 ----------
4848 grans : list of dictionaries
4949 List of input granule json dictionaries. Must have key "producer_granule_id"
50- ids: boolean , default True
50+ ids: bool , default True
5151 Return a list of the available granule IDs for the granule dictionary
52- cycles : boolean , default False
52+ cycles : bool , default False
5353 Return a list of the available orbital cycles for the granule dictionary
54- tracks : boolean , default False
54+ tracks : bool , default False
5555 Return a list of the available Reference Ground Tracks (RGTs) for the granule dictionary
56- dates : boolean , default False
56+ dates : bool , default False
5757 Return a list of the available dates for the granule dictionary.
58- cloud : boolean , default False
58+ cloud : bool , default False
5959 Return a a list of AWS s3 urls for the available granules in the granule dictionary.
6060 """
6161 assert len (grans ) > 0 , "Your data object has no granules associated with it"
@@ -272,21 +272,21 @@ def place_order(
272272 ----------
273273 CMRparams :
274274 Dictionary of properly formatted CMR search parameters.
275- subsetparams : dictionary
275+ subsetparams : dict
276276 Dictionary of properly formatted subsetting parameters. An empty dictionary
277277 is passed as input here when subsetting is set to False in query methods.
278- verbose : boolean , default False
278+ verbose : bool , default False
279279 Print out all feedback available from the order process.
280280 Progress information is automatically printed regardless of the value of verbose.
281- subset : boolean , default True
281+ subset : bool , default True
282282 Apply subsetting to the data order from the NSIDC, returning only data that meets the
283283 subset parameters.
284284 Spatial and temporal subsetting based on the input parameters happens
285285 by default when subset=True, but additional subsetting options are available.
286286 Spatial subsetting returns all data that are within the area of interest
287287 (but not complete granules.
288288 This eliminates false-positive granules returned by the metadata-level search)
289- geom_filepath : string , default None
289+ geom_filepath : str , default None
290290 String of the full filename and path when the spatial input is a file.
291291
292292 Notes
@@ -312,12 +312,12 @@ def download(self, verbose, path, restart=False):
312312
313313 Parameters
314314 ----------
315- verbose : boolean , default False
315+ verbose : bool , default False
316316 Print out all feedback available from the order process.
317317 Progress information is automatically printed regardless of the value of verbose.
318- path : string
318+ path : str
319319 String with complete path to desired download directory and location.
320- restart : boolean , default False
320+ restart : bool , default False
321321 Restart your download if it has been interrupted.
322322 If the kernel has been restarted, but you successfully
323323 completed your order, you will need to re-initialize your query class object
0 commit comments