Skip to content

Commit

Permalink
Merge pull request #451 from vincentsarago/vincents/allow-datetime-ob…
Browse files Browse the repository at this point in the history
…ject-for-temporal-queries

allow datetime object to be provided for temporal queries
  • Loading branch information
betolink authored Feb 13, 2024
2 parents e187ae0 + c1f62ce commit 6b86f49
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 21 deletions.
49 changes: 28 additions & 21 deletions earthaccess/search.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import datetime as dt
from inspect import getmembers, ismethod
from typing import Any, Dict, List, Optional, Tuple, Type
from typing import Any, Dict, List, Optional, Tuple, Type, Union

import dateutil.parser as parser # type: ignore
from cmr import CollectionQuery, GranuleQuery # type: ignore
Expand Down Expand Up @@ -312,31 +312,36 @@ def get(self, limit: int = 2000) -> list:
return results

def temporal(
self, date_from: str, date_to: str, exclude_boundary: bool = False
self,
date_from: Optional[Union[str, dt.datetime]] = None,
date_to: Optional[Union[str, dt.datetime]] = None,
exclude_boundary: bool = False,
) -> Type[CollectionQuery]:
"""Filter by an open or closed date range. Dates can be provided as datetime objects
or ISO 8601 formatted strings. Multiple ranges can be provided by successive calls
to this method before calling execute().
Parameters:
date_from: earliest date of temporal range
date_to: latest date of temporal range
exclude_boundary: whether to exclude the date_from/to in the matched range
date_from (String or Datetime object): earliest date of temporal range
date_to (String or Datetime object): latest date of temporal range
exclude_boundary (Boolean): whether or not to exclude the date_from/to in the matched range.
"""
DEFAULT = dt.datetime(1979, 1, 1)
if date_from is not None:
if date_from is not None and not isinstance(date_from, dt.datetime):
try:
parsed_from = parser.parse(date_from, default=DEFAULT).isoformat() + "Z"
date_from = parser.parse(date_from, default=DEFAULT).isoformat() + "Z"
except Exception:
print("The provided start date was not recognized")
parsed_from = ""
if date_to is not None:
date_from = ""

if date_to is not None and not isinstance(date_to, dt.datetime):
try:
parsed_to = parser.parse(date_to, default=DEFAULT).isoformat() + "Z"
date_to = parser.parse(date_to, default=DEFAULT).isoformat() + "Z"
except Exception:
print("The provided end date was not recognized")
parsed_to = ""
super().temporal(parsed_from, parsed_to, exclude_boundary)
date_to = ""

super().temporal(date_from, date_to, exclude_boundary)
return self


Expand Down Expand Up @@ -675,8 +680,8 @@ def debug(self, debug: bool = True) -> Type[GranuleQuery]:

def temporal(
self,
date_from: Optional[str] = None,
date_to: Optional[str] = None,
date_from: Optional[Union[str, dt.datetime]] = None,
date_to: Optional[Union[str, dt.datetime]] = None,
exclude_boundary: bool = False,
) -> Type[GranuleQuery]:
"""Filter by an open or closed date range.
Expand All @@ -689,19 +694,21 @@ def temporal(
exclude_boundary: whether to exclude the date_from/to in the matched range
"""
DEFAULT = dt.datetime(1979, 1, 1)
if date_from is not None:
if date_from is not None and not isinstance(date_from, dt.datetime):
try:
parsed_from = parser.parse(date_from, default=DEFAULT).isoformat() + "Z"
date_from = parser.parse(date_from, default=DEFAULT).isoformat() + "Z"
except Exception:
print("The provided start date was not recognized")
parsed_from = ""
if date_to is not None:
date_from = ""

if date_to is not None and not isinstance(date_to, dt.datetime):
try:
parsed_to = parser.parse(date_to, default=DEFAULT).isoformat() + "Z"
date_to = parser.parse(date_to, default=DEFAULT).isoformat() + "Z"
except Exception:
print("The provided end date was not recognized")
parsed_to = ""
super().temporal(parsed_from, parsed_to, exclude_boundary)
date_to = ""

super().temporal(date_from, date_to, exclude_boundary)
return self

def version(self, version: str = "") -> Type[GranuleQuery]:
Expand Down
36 changes: 36 additions & 0 deletions tests/unit/test_collection_queries.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# package imports
import datetime as dt

import pytest
from earthaccess.search import DataCollections

valid_single_dates = [
("2001-12-12", "2001-12-21", "2001-12-12T00:00:00Z,2001-12-21T00:00:00Z"),
("2021-02-01", "", "2021-02-01T00:00:00Z,"),
("1999-02-01 06:00", "2009-01-01", "1999-02-01T06:00:00Z,2009-01-01T00:00:00Z"),
(
dt.datetime(2021, 2, 1),
dt.datetime(2021, 2, 2),
"2021-02-01T00:00:00Z,2021-02-02T00:00:00Z",
),
]

invalid_single_dates = [
("2001-12-45", "2001-12-21", None),
("2021w1", "", None),
("2999-02-01", "2009-01-01", None),
]


def test_query_can_find_cloud_provider():
query = DataCollections().daac("PODAAC").cloud_hosted(True)
Expand All @@ -18,3 +38,19 @@ def test_querybuilder_can_handle_doi():
assert query.params["doi"] == doi
query = DataCollections().cloud_hosted(True).daac("PODAAC").doi(doi)
assert query.params["doi"] == doi


@pytest.mark.parametrize("start,end,expected", valid_single_dates)
def test_query_can_parse_single_dates(start, end, expected):
query = DataCollections().temporal(start, end)
assert query.params["temporal"][0] == expected


@pytest.mark.parametrize("start,end,expected", invalid_single_dates)
def test_query_can_handle_invalid_dates(start, end, expected):
query = DataCollections()
try:
query = query.temporal(start, end)
except Exception as e:
assert isinstance(e, ValueError)
assert "temporal" not in query.params
7 changes: 7 additions & 0 deletions tests/unit/test_granule_queries.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# package imports
import datetime as dt

import pytest
from earthaccess.search import DataGranules

valid_single_dates = [
("2001-12-12", "2001-12-21", "2001-12-12T00:00:00Z,2001-12-21T00:00:00Z"),
("2021-02-01", "", "2021-02-01T00:00:00Z,"),
("1999-02-01 06:00", "2009-01-01", "1999-02-01T06:00:00Z,2009-01-01T00:00:00Z"),
(
dt.datetime(2021, 2, 1),
dt.datetime(2021, 2, 2),
"2021-02-01T00:00:00Z,2021-02-02T00:00:00Z",
),
]

invalid_single_dates = [
Expand Down

0 comments on commit 6b86f49

Please sign in to comment.