├── .devcontainer └── devcontainer.json ├── .gitignore ├── 1_Getting_started-NCI.md ├── 2_Getting_started-JupyterLab-ARE.md ├── LICENSE ├── Practial_template.ipynb ├── README.md ├── Virtual_env_instructions.md ├── figures ├── 1.1_fig1.png ├── 1.2_fig7.png ├── 2.1_Fig2.png ├── 2.1_spectral signatures 2.PNG ├── 2.2_ROI.PNG ├── 3.1_fig1.PNG ├── 3.1_fig2.PNG ├── 3.1_fig3.PNG ├── 3.1_fig4_collectPts2.JPG ├── 3.2_fig1.png ├── 3.2_fig2.PNG ├── 7_1_fig1.PNG ├── ACT_urban_region.geojson ├── ARE_dashboard.PNG ├── Lake_Ngami.geojson ├── Launch_jupyterlab.png ├── NSW.geojson ├── Open_jupyterlab.PNG ├── Waiting_to_launch.PNG ├── example.geojson ├── false color.png ├── false color.svg ├── git_clone.PNG ├── landcover_points.geojson ├── namadgi_region.geojson ├── nci_user_registration.png ├── sign_up_for_project.JPG └── training_data.geojson ├── misc ├── Creating_nice_figures.ipynb ├── GEE_with_eemont.ipynb ├── Loading_landsat_and_sentinel_examples.ipynb ├── Masking.ipynb ├── S2_cloudScore.ipynb ├── Timeseries_operations.ipynb └── Water_area_and_rainfall.ipynb ├── requirements.txt ├── week1 ├── 1.1_ENGN3903_Introduction_to_Python_and_Jupyter.ipynb └── 1.2_ENGN3903_Introduction_to_Google_Earth_Engine.ipynb ├── week2 ├── 2.1_ENGN3903_Satellite_images_and_bands.ipynb └── 2.2_ENGN3903_Images_collections_and_filters.ipynb ├── week3 ├── 3.1_ENGN3903_Spatial_Spectral_resolution.ipynb └── 3.2_ENGN3903_Features_and_Feature_Collections_in_GEE.ipynb ├── week4 └── 4.1_ENGN3903_Image Classification.ipynb ├── week5 ├── 5.1_ENGN3903_Change_Detection_with_classification.ipynb └── 5.2_ENGN3903_Change_Detection_vegetation.ipynb ├── week6 ├── 6.1_ENGN3903_Hansen_Global_Forest_Change.ipynb └── 6.2_ENGN3903_JRC_Global_Surface_Water.ipynb ├── week7 ├── 7.1_ENGN3903_Spatiotemporal_analysis_of_soil_moisture.ipynb └── 7.2_ENGN3903_Drought_assessment_and_monitoring.ipynb ├── week8 ├── 8.3_ENGN3903_Download_S2_geotiff.ipynb └── anu_research_forest.geojson └── week9 ├── 9.1_ENGN3903_Modelling_Leaf_spectra.ipynb ├── 9.2_ENGN3903_comparing_Leaf_and_satellite_spectra.ipynb ├── measured ├── MAC_ARB_098_044_210422_L00001.asd.txt ├── MAC_ARB_098_334_210602_L00004.asd.txt ├── MAC_ARB_099_339_210422_L00003.asd.txt ├── MAC_ARB_099_355_210514_L00004.asd.txt ├── MAC_ARB_099_592_210428_L00001.asd.txt ├── MCL_ARB_055_234_210422_L00002.asd.txt ├── MCL_ARB_055_nnn_210407_L00000.asd.txt ├── TRI_ARB_099_221_210422_L00001.asd.txt └── TRI_ARB_099_264_210422_L00003.asd.txt └── simulated ├── prospectSimulatedSpectra.csv ├── prospectSimulatedSpectra_Cab.csv ├── prospectSimulatedSpectra_Car.csv ├── prospectSimulatedSpectra_DMC.csv ├── prospectSimulatedSpectra_EWT.csv ├── prospectSimulatedSpectra_FMC.csv ├── prospectSimulatedSpectra_FMC_T.csv └── prospectSimulatedSpectra_N.csv /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/.gitignore -------------------------------------------------------------------------------- /1_Getting_started-NCI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/1_Getting_started-NCI.md -------------------------------------------------------------------------------- /2_Getting_started-JupyterLab-ARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/2_Getting_started-JupyterLab-ARE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/LICENSE -------------------------------------------------------------------------------- /Practial_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/Practial_template.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/README.md -------------------------------------------------------------------------------- /Virtual_env_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/Virtual_env_instructions.md -------------------------------------------------------------------------------- /figures/1.1_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/1.1_fig1.png -------------------------------------------------------------------------------- /figures/1.2_fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/1.2_fig7.png -------------------------------------------------------------------------------- /figures/2.1_Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/2.1_Fig2.png -------------------------------------------------------------------------------- /figures/2.1_spectral signatures 2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/2.1_spectral signatures 2.PNG -------------------------------------------------------------------------------- /figures/2.2_ROI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/2.2_ROI.PNG -------------------------------------------------------------------------------- /figures/3.1_fig1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/3.1_fig1.PNG -------------------------------------------------------------------------------- /figures/3.1_fig2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/3.1_fig2.PNG -------------------------------------------------------------------------------- /figures/3.1_fig3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/3.1_fig3.PNG -------------------------------------------------------------------------------- /figures/3.1_fig4_collectPts2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/3.1_fig4_collectPts2.JPG -------------------------------------------------------------------------------- /figures/3.2_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/3.2_fig1.png -------------------------------------------------------------------------------- /figures/3.2_fig2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/3.2_fig2.PNG -------------------------------------------------------------------------------- /figures/7_1_fig1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/7_1_fig1.PNG -------------------------------------------------------------------------------- /figures/ACT_urban_region.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/ACT_urban_region.geojson -------------------------------------------------------------------------------- /figures/ARE_dashboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/ARE_dashboard.PNG -------------------------------------------------------------------------------- /figures/Lake_Ngami.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/Lake_Ngami.geojson -------------------------------------------------------------------------------- /figures/Launch_jupyterlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/Launch_jupyterlab.png -------------------------------------------------------------------------------- /figures/NSW.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/NSW.geojson -------------------------------------------------------------------------------- /figures/Open_jupyterlab.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/Open_jupyterlab.PNG -------------------------------------------------------------------------------- /figures/Waiting_to_launch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/Waiting_to_launch.PNG -------------------------------------------------------------------------------- /figures/example.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/example.geojson -------------------------------------------------------------------------------- /figures/false color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/false color.png -------------------------------------------------------------------------------- /figures/false color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/false color.svg -------------------------------------------------------------------------------- /figures/git_clone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/git_clone.PNG -------------------------------------------------------------------------------- /figures/landcover_points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/landcover_points.geojson -------------------------------------------------------------------------------- /figures/namadgi_region.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/namadgi_region.geojson -------------------------------------------------------------------------------- /figures/nci_user_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/nci_user_registration.png -------------------------------------------------------------------------------- /figures/sign_up_for_project.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/sign_up_for_project.JPG -------------------------------------------------------------------------------- /figures/training_data.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/figures/training_data.geojson -------------------------------------------------------------------------------- /misc/Creating_nice_figures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/Creating_nice_figures.ipynb -------------------------------------------------------------------------------- /misc/GEE_with_eemont.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/GEE_with_eemont.ipynb -------------------------------------------------------------------------------- /misc/Loading_landsat_and_sentinel_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/Loading_landsat_and_sentinel_examples.ipynb -------------------------------------------------------------------------------- /misc/Masking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/Masking.ipynb -------------------------------------------------------------------------------- /misc/S2_cloudScore.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/S2_cloudScore.ipynb -------------------------------------------------------------------------------- /misc/Timeseries_operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/Timeseries_operations.ipynb -------------------------------------------------------------------------------- /misc/Water_area_and_rainfall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/misc/Water_area_and_rainfall.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/requirements.txt -------------------------------------------------------------------------------- /week1/1.1_ENGN3903_Introduction_to_Python_and_Jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week1/1.1_ENGN3903_Introduction_to_Python_and_Jupyter.ipynb -------------------------------------------------------------------------------- /week1/1.2_ENGN3903_Introduction_to_Google_Earth_Engine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week1/1.2_ENGN3903_Introduction_to_Google_Earth_Engine.ipynb -------------------------------------------------------------------------------- /week2/2.1_ENGN3903_Satellite_images_and_bands.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week2/2.1_ENGN3903_Satellite_images_and_bands.ipynb -------------------------------------------------------------------------------- /week2/2.2_ENGN3903_Images_collections_and_filters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week2/2.2_ENGN3903_Images_collections_and_filters.ipynb -------------------------------------------------------------------------------- /week3/3.1_ENGN3903_Spatial_Spectral_resolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week3/3.1_ENGN3903_Spatial_Spectral_resolution.ipynb -------------------------------------------------------------------------------- /week3/3.2_ENGN3903_Features_and_Feature_Collections_in_GEE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week3/3.2_ENGN3903_Features_and_Feature_Collections_in_GEE.ipynb -------------------------------------------------------------------------------- /week4/4.1_ENGN3903_Image Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week4/4.1_ENGN3903_Image Classification.ipynb -------------------------------------------------------------------------------- /week5/5.1_ENGN3903_Change_Detection_with_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week5/5.1_ENGN3903_Change_Detection_with_classification.ipynb -------------------------------------------------------------------------------- /week5/5.2_ENGN3903_Change_Detection_vegetation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week5/5.2_ENGN3903_Change_Detection_vegetation.ipynb -------------------------------------------------------------------------------- /week6/6.1_ENGN3903_Hansen_Global_Forest_Change.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week6/6.1_ENGN3903_Hansen_Global_Forest_Change.ipynb -------------------------------------------------------------------------------- /week6/6.2_ENGN3903_JRC_Global_Surface_Water.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week6/6.2_ENGN3903_JRC_Global_Surface_Water.ipynb -------------------------------------------------------------------------------- /week7/7.1_ENGN3903_Spatiotemporal_analysis_of_soil_moisture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week7/7.1_ENGN3903_Spatiotemporal_analysis_of_soil_moisture.ipynb -------------------------------------------------------------------------------- /week7/7.2_ENGN3903_Drought_assessment_and_monitoring.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week7/7.2_ENGN3903_Drought_assessment_and_monitoring.ipynb -------------------------------------------------------------------------------- /week8/8.3_ENGN3903_Download_S2_geotiff.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week8/8.3_ENGN3903_Download_S2_geotiff.ipynb -------------------------------------------------------------------------------- /week8/anu_research_forest.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week8/anu_research_forest.geojson -------------------------------------------------------------------------------- /week9/9.1_ENGN3903_Modelling_Leaf_spectra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/9.1_ENGN3903_Modelling_Leaf_spectra.ipynb -------------------------------------------------------------------------------- /week9/9.2_ENGN3903_comparing_Leaf_and_satellite_spectra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/9.2_ENGN3903_comparing_Leaf_and_satellite_spectra.ipynb -------------------------------------------------------------------------------- /week9/measured/MAC_ARB_098_044_210422_L00001.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MAC_ARB_098_044_210422_L00001.asd.txt -------------------------------------------------------------------------------- /week9/measured/MAC_ARB_098_334_210602_L00004.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MAC_ARB_098_334_210602_L00004.asd.txt -------------------------------------------------------------------------------- /week9/measured/MAC_ARB_099_339_210422_L00003.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MAC_ARB_099_339_210422_L00003.asd.txt -------------------------------------------------------------------------------- /week9/measured/MAC_ARB_099_355_210514_L00004.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MAC_ARB_099_355_210514_L00004.asd.txt -------------------------------------------------------------------------------- /week9/measured/MAC_ARB_099_592_210428_L00001.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MAC_ARB_099_592_210428_L00001.asd.txt -------------------------------------------------------------------------------- /week9/measured/MCL_ARB_055_234_210422_L00002.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MCL_ARB_055_234_210422_L00002.asd.txt -------------------------------------------------------------------------------- /week9/measured/MCL_ARB_055_nnn_210407_L00000.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/MCL_ARB_055_nnn_210407_L00000.asd.txt -------------------------------------------------------------------------------- /week9/measured/TRI_ARB_099_221_210422_L00001.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/TRI_ARB_099_221_210422_L00001.asd.txt -------------------------------------------------------------------------------- /week9/measured/TRI_ARB_099_264_210422_L00003.asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/measured/TRI_ARB_099_264_210422_L00003.asd.txt -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_Cab.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_Cab.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_Car.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_Car.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_DMC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_DMC.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_EWT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_EWT.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_FMC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_FMC.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_FMC_T.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_FMC_T.csv -------------------------------------------------------------------------------- /week9/simulated/prospectSimulatedSpectra_N.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasyounes/engn3903/HEAD/week9/simulated/prospectSimulatedSpectra_N.csv --------------------------------------------------------------------------------