gjoseph92 / stackstac

Turn a STAC catalog into a dask-based xarray
https://stackstac.readthedocs.io
MIT License
238 stars 49 forks source link

Remove deprecated `skip_equivalent` pyproj arg #174

Closed gjoseph92 closed 1 year ago

gjoseph92 commented 1 year ago

Closes https://github.com/gjoseph92/stackstac/issues/173

Caused by https://github.com/pyproj4/pyproj/pull/1077.

FYI @snowman2 since https://github.com/pyproj4/pyproj/pull/824 used a DeprecationWarning, not a FutureWarning, the warning would not have typically been displayed to users. That's probably why neither I nor anybody else noticed it.

https://docs.python.org/3/library/warnings.html#warning-categories Class Description
DeprecationWarning Base category for warnings about deprecated features when those warnings are intended for other Python developers (ignored by default, unless triggered by code in main).
FutureWarning Base category for warnings about deprecated features when those warnings are intended for end users of applications that are written in Python.