We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sentinel_2.ipynb
The query variable is
query = { 'time': ('2020-08', '2020-10'), 'x': (lon - buffer, lon + buffer), 'y': (lat + buffer, lat - buffer), 'output_crs': 'epsg:6933', 'resolution':(-20,20), }
but this gave me an empty datacube. I updated the query to
query = { 'time': ('2020-01', '2020-03'), 'x': (lon - buffer, lon + buffer), 'y': (lat + buffer, lat - buffer), 'output_crs': 'epsg:6933', 'resolution':(-20,20), }
and it worked.
The text was updated successfully, but these errors were encountered:
Or you might populate your db with:
docker-compose exec jupyter bash -c "stac-to-dc --bbox='25,20,35,30' --collections='sentinel-s2-l2a-cogs' --datetime='2020-08-01/2020-12-31'"
But kidding aside, you are right. The db population and the example notebooks need syncing!
Sorry, something went wrong.
No branches or pull requests
The query variable is
but this gave me an empty datacube. I updated the query to
and it worked.
The text was updated successfully, but these errors were encountered: