├── .gitignore ├── LICENSE ├── README.md ├── bin ├── apply_hooks.sh └── pre-commit ├── easi_tools ├── __init__.py ├── deployments.py ├── load_s2l2a.py └── notebook_utils.py ├── html ├── notebooks │ ├── 01-welcome-to-easi.html │ ├── 02-data-storage.html │ ├── adding-python-libraries.html │ ├── dask │ │ ├── 01-Introduction_to_Dask.html │ │ ├── 02-ODC_with_Dask.html │ │ ├── 03-Larger_than_RAM_with_LocalCluster.html │ │ ├── 04-Go_Big_or_Go_Home_Part_1.html │ │ ├── 05-Go_Big_or_Go_Home_Part_2.html │ │ └── 06-On_Chunks_-_The_Art_of_Dask_Tuning_Part_1.html │ ├── data_products │ │ ├── novasar-1-gamma0.html │ │ ├── sentinel-1-gamma0.html │ │ ├── sentinel-2-c1-l2a.html │ │ └── sentinel-2-l2a.html │ └── easi-scratch-bucket.html └── readme.md ├── notebooks ├── 01-welcome-to-easi.ipynb ├── 02-data-storage.ipynb ├── adding-python-libraries.ipynb ├── dask │ ├── 01-Introduction_to_Dask.ipynb │ ├── 02-ODC_with_Dask.ipynb │ ├── 03-Larger_than_RAM_with_LocalCluster.ipynb │ ├── 04-Go_Big_or_Go_Home_Part_1.ipynb │ ├── 05-Go_Big_or_Go_Home_Part_2.ipynb │ └── 06-On_Chunks-The_Art_of_Dask_Tuning_Part_1.ipynb ├── data_products │ ├── novasar-1-gamma0.ipynb │ ├── sentinel-1-gamma0.ipynb │ ├── sentinel-2-c1-l2a.ipynb │ └── sentinel-2-l2a.ipynb └── easi-scratch-bucket.ipynb ├── resources ├── DaskCluster-ODCandDask.svg ├── aws-opendata-markup.png ├── csiro_easi_logo.png ├── dask-array.svg ├── dask-dataframe.svg ├── dask-simple.png ├── dask_array_example_small.png ├── distributed-overview.png ├── lake-tempe-landsat-rgb.png └── stop-my-server.png └── whats_new.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /bin/apply_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/bin/apply_hooks.sh -------------------------------------------------------------------------------- /bin/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/bin/pre-commit -------------------------------------------------------------------------------- /easi_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/easi_tools/__init__.py -------------------------------------------------------------------------------- /easi_tools/deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/easi_tools/deployments.py -------------------------------------------------------------------------------- /easi_tools/load_s2l2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/easi_tools/load_s2l2a.py -------------------------------------------------------------------------------- /easi_tools/notebook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/easi_tools/notebook_utils.py -------------------------------------------------------------------------------- /html/notebooks/01-welcome-to-easi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/01-welcome-to-easi.html -------------------------------------------------------------------------------- /html/notebooks/02-data-storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/02-data-storage.html -------------------------------------------------------------------------------- /html/notebooks/adding-python-libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/adding-python-libraries.html -------------------------------------------------------------------------------- /html/notebooks/dask/01-Introduction_to_Dask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/dask/01-Introduction_to_Dask.html -------------------------------------------------------------------------------- /html/notebooks/dask/02-ODC_with_Dask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/dask/02-ODC_with_Dask.html -------------------------------------------------------------------------------- /html/notebooks/dask/03-Larger_than_RAM_with_LocalCluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/dask/03-Larger_than_RAM_with_LocalCluster.html -------------------------------------------------------------------------------- /html/notebooks/dask/04-Go_Big_or_Go_Home_Part_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/dask/04-Go_Big_or_Go_Home_Part_1.html -------------------------------------------------------------------------------- /html/notebooks/dask/05-Go_Big_or_Go_Home_Part_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/dask/05-Go_Big_or_Go_Home_Part_2.html -------------------------------------------------------------------------------- /html/notebooks/dask/06-On_Chunks_-_The_Art_of_Dask_Tuning_Part_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/dask/06-On_Chunks_-_The_Art_of_Dask_Tuning_Part_1.html -------------------------------------------------------------------------------- /html/notebooks/data_products/novasar-1-gamma0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/data_products/novasar-1-gamma0.html -------------------------------------------------------------------------------- /html/notebooks/data_products/sentinel-1-gamma0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/data_products/sentinel-1-gamma0.html -------------------------------------------------------------------------------- /html/notebooks/data_products/sentinel-2-c1-l2a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/data_products/sentinel-2-c1-l2a.html -------------------------------------------------------------------------------- /html/notebooks/data_products/sentinel-2-l2a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/data_products/sentinel-2-l2a.html -------------------------------------------------------------------------------- /html/notebooks/easi-scratch-bucket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/notebooks/easi-scratch-bucket.html -------------------------------------------------------------------------------- /html/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/html/readme.md -------------------------------------------------------------------------------- /notebooks/01-welcome-to-easi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/01-welcome-to-easi.ipynb -------------------------------------------------------------------------------- /notebooks/02-data-storage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/02-data-storage.ipynb -------------------------------------------------------------------------------- /notebooks/adding-python-libraries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/adding-python-libraries.ipynb -------------------------------------------------------------------------------- /notebooks/dask/01-Introduction_to_Dask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/dask/01-Introduction_to_Dask.ipynb -------------------------------------------------------------------------------- /notebooks/dask/02-ODC_with_Dask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/dask/02-ODC_with_Dask.ipynb -------------------------------------------------------------------------------- /notebooks/dask/03-Larger_than_RAM_with_LocalCluster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/dask/03-Larger_than_RAM_with_LocalCluster.ipynb -------------------------------------------------------------------------------- /notebooks/dask/04-Go_Big_or_Go_Home_Part_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/dask/04-Go_Big_or_Go_Home_Part_1.ipynb -------------------------------------------------------------------------------- /notebooks/dask/05-Go_Big_or_Go_Home_Part_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/dask/05-Go_Big_or_Go_Home_Part_2.ipynb -------------------------------------------------------------------------------- /notebooks/dask/06-On_Chunks-The_Art_of_Dask_Tuning_Part_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/dask/06-On_Chunks-The_Art_of_Dask_Tuning_Part_1.ipynb -------------------------------------------------------------------------------- /notebooks/data_products/novasar-1-gamma0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/data_products/novasar-1-gamma0.ipynb -------------------------------------------------------------------------------- /notebooks/data_products/sentinel-1-gamma0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/data_products/sentinel-1-gamma0.ipynb -------------------------------------------------------------------------------- /notebooks/data_products/sentinel-2-c1-l2a.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/data_products/sentinel-2-c1-l2a.ipynb -------------------------------------------------------------------------------- /notebooks/data_products/sentinel-2-l2a.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/data_products/sentinel-2-l2a.ipynb -------------------------------------------------------------------------------- /notebooks/easi-scratch-bucket.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/notebooks/easi-scratch-bucket.ipynb -------------------------------------------------------------------------------- /resources/DaskCluster-ODCandDask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/DaskCluster-ODCandDask.svg -------------------------------------------------------------------------------- /resources/aws-opendata-markup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/aws-opendata-markup.png -------------------------------------------------------------------------------- /resources/csiro_easi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/csiro_easi_logo.png -------------------------------------------------------------------------------- /resources/dask-array.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/dask-array.svg -------------------------------------------------------------------------------- /resources/dask-dataframe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/dask-dataframe.svg -------------------------------------------------------------------------------- /resources/dask-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/dask-simple.png -------------------------------------------------------------------------------- /resources/dask_array_example_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/dask_array_example_small.png -------------------------------------------------------------------------------- /resources/distributed-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/distributed-overview.png -------------------------------------------------------------------------------- /resources/lake-tempe-landsat-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/lake-tempe-landsat-rgb.png -------------------------------------------------------------------------------- /resources/stop-my-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/resources/stop-my-server.png -------------------------------------------------------------------------------- /whats_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiro-easi/easi-notebooks/HEAD/whats_new.md --------------------------------------------------------------------------------