Skip to content

Commit

Permalink
fix: make default extent valid (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrodmn authored Feb 13, 2025
1 parent 03f8c87 commit 263f420
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 52 deletions.
2 changes: 1 addition & 1 deletion src/stactools/ephemeral/stac.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def create_collection() -> Collection:
Collection: STAC Collection object
"""
extent = Extent(
SpatialExtent([[-180.0, 90.0, 180.0, -90.0]]),
SpatialExtent([[-180.0, -90.0, 180.0, 90.0]]),
TemporalExtent([[datetime.now(tz=timezone.utc), None]]),
)

Expand Down
53 changes: 2 additions & 51 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 263f420

Please sign in to comment.