This file contains 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
https://www.missingmaps.org/ #citizen science, increasing openstreetmap coverage | |
https://jupyterbook.org/intro.html#install-jupyter-book #jupyter books! books from jupyter notebooks. |
This file contains 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
bex Today at 2:56 PM | |
hey, do we have a import and reproject raster function or functionality for non-dea rasters? Or am I writing one? | |
Chad 25 minutes ago | |
yeah xr_reproject | |
Chad 23 minutes ago | |
somehting like this: | |
from datacube.utils.geometry import assign_crs |
This file contains 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
sync_repo https://github.com/GeoscienceAustralia/dea-notebooks.git master |
This file contains 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
#clear catchment list from database, clear cell outputs before pushing to repo with Emma's wit DB | |
catchment_list = dio.get_catchment_list(vague_string) |
This file contains 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
from IPython.display import GeoJSON | |
import datacube | |
from datacube.testutils.geom import epsg4326 | |
dc = datacube.Datacube(env='s2') | |
GeoJSON([ds.extent.to_crs(epsg4326).__geo_interface__ | |
for ds in dc.find_datasets( | |
product='s2a_nrt_granule', | |
time=('2019-02-03', '2019-02-03'))]) |