icepyx.Query.dates

property Query.dates

Return an array showing the date range of the query object. Dates are returned as an array containing the start and end datetime objects, inclusive, in that order.

Examples

>>> reg_a = ipx.GenQuery([-55, 68, -48, 71],['2019-02-20','2019-02-28'])
>>> reg_a.dates
['2019-02-20', '2019-02-28']
>>> reg_a = GenQuery([-55, 68, -48, 71])
>>> reg_a.dates
['No temporal parameters set']