Last active
March 3, 2020 02:08
-
-
Save jhamman/18a8afa1030014754a184d79fc238359 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [7]: import satsearch | |
In [8]: results = satsearch.Search.search( | |
...: collection='landsat-8-l1', | |
...: bbox=[43.16, -11.32, 43.54, -11.96], | |
...: sort=['<datetime'], #earliest scene first | |
...: property=["landsat:tier=T1"]) | |
...: | |
In [9]: catalog = intake.open_stac_item_collection(results.items()) | |
In [10]: catalog | |
<satstac.itemcollection.ItemCollection at 0x7f96efe16828> | |
In [11]: catalog.LC81620682019198.B9.to_dask() | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment