Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible approach for stacking items #75

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/binderbadge.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# create a mybinder badge issue comment for testing PRs
name: AddBinderBadge
on:
pull_request:
pull_request_target:
types: [opened, reopened]
jobs:
build-image-without-pushing:
Expand Down
1 change: 1 addition & 0 deletions ci/environment-3.7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ dependencies:
- pystac
- pytest-cov
- rasterio
- rioxarray
- xarray
1 change: 1 addition & 0 deletions ci/environment-3.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ dependencies:
- pystac
- pytest-cov
- rasterio
- rioxarray
- xarray
1 change: 1 addition & 0 deletions ci/environment-3.9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ dependencies:
- pystac
- pytest-cov
- rasterio
- rioxarray
- xarray
1 change: 1 addition & 0 deletions ci/environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ dependencies:
- pytoml
- pyyaml
- rasterio
- rioxarray
- recommonmark
- requests
- sat-search>=0.3
Expand Down
1 change: 1 addition & 0 deletions ci/environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies:
- pystac
- pytest-cov
- rasterio
- rioxarray
- sat-search
- scikit-image
- sphinx
Expand Down
1 change: 1 addition & 0 deletions ci/environment-gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ dependencies:
- pytoml
- pyyaml
- rasterio
- rioxarray
- recommonmark
- requests
- sat-search>=0.3
Expand Down
1 change: 1 addition & 0 deletions ci/environment-unpinned.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ dependencies:
- pystac
- pytest-cov
- rasterio
- rioxarray
- xarray
3 changes: 2 additions & 1 deletion ci/environment-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- pystac
- pytest-cov
- rasterio
- xarray
- rioxarray
- pip:
- git+https://github.com/intake/filesystem_spec.git
- git+https://github.com/stac-utils/pystac.git
Expand All @@ -20,3 +20,4 @@ dependencies:
- git+https://github.com/intake/intake-xarray.git
- git+https://github.com/intake/intake_geopandas.git
- git+https://github.com/intake/intake-parquet.git
- git+https://github.com/pydata/xarray.git
5 changes: 5 additions & 0 deletions intake_stac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
from pkg_resources import DistributionNotFound, get_distribution

from .catalog import StacCatalog, StacCollection, StacItem, StacItemCollection # noqa: F401
from .drivers import RioxarraySource # noqa: F401

# NOTE: "The drivers ['rioxarray'] do not specify entry_points" but in setup.py...
# intake.register_driver('rioxarray', RioxarraySource)
# register_container('xarray', RioxarraySource) (override intake_xarray?)

try:
__version__ = get_distribution(__name__).version
Expand Down
Loading