├── .gitignore ├── CODE_OF_CONDUCT.md ├── Footprints ├── Chilikha Lake │ ├── chilikha_lake.dbf │ ├── chilikha_lake.prj │ ├── chilikha_lake.qpj │ ├── chilikha_lake.shp │ └── chilikha_lake.shx └── Okeechobee Lake │ ├── okeechobee_lake.dbf │ ├── okeechobee_lake.prj │ ├── okeechobee_lake.qpj │ ├── okeechobee_lake.shp │ └── okeechobee_lake.shx ├── Pilot_NDWI.ipynb ├── README.md ├── Reports ├── Implementation and Comparison of Water Based Indices_Python Pilot Project.pdf └── Presentation.pptx ├── Shape Files ├── Chilikha Lake │ ├── Chilikha_Lake.dbf │ ├── Chilikha_Lake.prj │ ├── Chilikha_Lake.qpj │ ├── Chilikha_Lake.shp │ └── Chilikha_Lake.shx └── Okeechobee Lake │ ├── okeechobee_lake.dbf │ ├── okeechobee_lake.prj │ ├── okeechobee_lake.qpj │ ├── okeechobee_lake.shp │ └── okeechobee_lake.shx ├── Spectral_Modulation.ipynb ├── Spectral_modulation_for_Sentinel2A.ipynb ├── Thresholding_Sentinel2A.ipynb ├── driver.py ├── landsat8_indices.ipynb ├── misc ├── chilikha_result.PNG ├── chilikha_study_site.PNG ├── landsat8 │ ├── ndwi_lmc_chilika.jpg │ ├── ndwi_lmc_okeechobee.jpg │ ├── ndwi_wc_chilika.jpg │ └── ndwi_wc_okeechobee.jpg ├── okeechobee_rsult.PNG ├── okeechobee_study_site.PNG ├── spectral_modulation_landsat8 │ ├── LS8_TM_all_classes__Chilikha.PNG │ ├── LS8_TM_all_classes__Okeechobe.PNG │ ├── LS8_TM_swir_water__Chilikha.PNG │ └── LS8_TM_swir_water__Okeechobe.PNG ├── spectral_modulation_sentinel2A │ ├── Sentinel2A_TM_all_classes__Chilikha_Sentinel.png │ ├── Sentinel2A_TM_all_classes__Okeechobe_Sentinel.png │ ├── Sentinel2A_TM_swir_water__Chilikha_Sentinel.png │ └── Sentinel2A_TM_swir_water__Okeechobe_Sentinel.png └── thresholding_sentinel2A │ ├── chilikha_ndci_t167.png │ ├── chilikha_ndwi_lmc_t144.png │ ├── chilikha_ndwi_wc_t130.png │ ├── ndci_FreqVsGreyscale.PNG │ ├── ndwi_lmc_FreqVsGreyscale.PNG │ ├── ndwi_wc_FreqVsGreyscale.PNG │ ├── okeechobee_ndci_FreqVsGreyScale.PNG │ ├── okeechobee_ndci_t150.png │ ├── okeechobee_ndwi_lmc_FreqVsGreyScale.PNG │ ├── okeechobee_ndwi_lmc_t194.png │ ├── okeechobee_ndwi_wc_FreqVsGreyScale.PNG │ └── okeechobee_ndwi_wc_t110.png ├── papers ├── First Derivative RS Inland Water Quality Indices.pdf └── ndwi.pdf └── spectral_modulation_landsat8.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | /data/* 3 | /Results/* -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Footprints/Chilikha Lake/chilikha_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Chilikha Lake/chilikha_lake.dbf -------------------------------------------------------------------------------- /Footprints/Chilikha Lake/chilikha_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Chilikha Lake/chilikha_lake.prj -------------------------------------------------------------------------------- /Footprints/Chilikha Lake/chilikha_lake.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Chilikha Lake/chilikha_lake.qpj -------------------------------------------------------------------------------- /Footprints/Chilikha Lake/chilikha_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Chilikha Lake/chilikha_lake.shp -------------------------------------------------------------------------------- /Footprints/Chilikha Lake/chilikha_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Chilikha Lake/chilikha_lake.shx -------------------------------------------------------------------------------- /Footprints/Okeechobee Lake/okeechobee_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Okeechobee Lake/okeechobee_lake.dbf -------------------------------------------------------------------------------- /Footprints/Okeechobee Lake/okeechobee_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Okeechobee Lake/okeechobee_lake.prj -------------------------------------------------------------------------------- /Footprints/Okeechobee Lake/okeechobee_lake.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Okeechobee Lake/okeechobee_lake.qpj -------------------------------------------------------------------------------- /Footprints/Okeechobee Lake/okeechobee_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Okeechobee Lake/okeechobee_lake.shp -------------------------------------------------------------------------------- /Footprints/Okeechobee Lake/okeechobee_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Footprints/Okeechobee Lake/okeechobee_lake.shx -------------------------------------------------------------------------------- /Pilot_NDWI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Pilot_NDWI.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/README.md -------------------------------------------------------------------------------- /Reports/Implementation and Comparison of Water Based Indices_Python Pilot Project.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Reports/Implementation and Comparison of Water Based Indices_Python Pilot Project.pdf -------------------------------------------------------------------------------- /Reports/Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Reports/Presentation.pptx -------------------------------------------------------------------------------- /Shape Files/Chilikha Lake/Chilikha_Lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Chilikha Lake/Chilikha_Lake.dbf -------------------------------------------------------------------------------- /Shape Files/Chilikha Lake/Chilikha_Lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Chilikha Lake/Chilikha_Lake.prj -------------------------------------------------------------------------------- /Shape Files/Chilikha Lake/Chilikha_Lake.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Chilikha Lake/Chilikha_Lake.qpj -------------------------------------------------------------------------------- /Shape Files/Chilikha Lake/Chilikha_Lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Chilikha Lake/Chilikha_Lake.shp -------------------------------------------------------------------------------- /Shape Files/Chilikha Lake/Chilikha_Lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Chilikha Lake/Chilikha_Lake.shx -------------------------------------------------------------------------------- /Shape Files/Okeechobee Lake/okeechobee_lake.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Okeechobee Lake/okeechobee_lake.dbf -------------------------------------------------------------------------------- /Shape Files/Okeechobee Lake/okeechobee_lake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Okeechobee Lake/okeechobee_lake.prj -------------------------------------------------------------------------------- /Shape Files/Okeechobee Lake/okeechobee_lake.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Okeechobee Lake/okeechobee_lake.qpj -------------------------------------------------------------------------------- /Shape Files/Okeechobee Lake/okeechobee_lake.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Okeechobee Lake/okeechobee_lake.shp -------------------------------------------------------------------------------- /Shape Files/Okeechobee Lake/okeechobee_lake.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Shape Files/Okeechobee Lake/okeechobee_lake.shx -------------------------------------------------------------------------------- /Spectral_Modulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Spectral_Modulation.ipynb -------------------------------------------------------------------------------- /Spectral_modulation_for_Sentinel2A.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Spectral_modulation_for_Sentinel2A.ipynb -------------------------------------------------------------------------------- /Thresholding_Sentinel2A.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/Thresholding_Sentinel2A.ipynb -------------------------------------------------------------------------------- /driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/driver.py -------------------------------------------------------------------------------- /landsat8_indices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/landsat8_indices.ipynb -------------------------------------------------------------------------------- /misc/chilikha_result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/chilikha_result.PNG -------------------------------------------------------------------------------- /misc/chilikha_study_site.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/chilikha_study_site.PNG -------------------------------------------------------------------------------- /misc/landsat8/ndwi_lmc_chilika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/landsat8/ndwi_lmc_chilika.jpg -------------------------------------------------------------------------------- /misc/landsat8/ndwi_lmc_okeechobee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/landsat8/ndwi_lmc_okeechobee.jpg -------------------------------------------------------------------------------- /misc/landsat8/ndwi_wc_chilika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/landsat8/ndwi_wc_chilika.jpg -------------------------------------------------------------------------------- /misc/landsat8/ndwi_wc_okeechobee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/landsat8/ndwi_wc_okeechobee.jpg -------------------------------------------------------------------------------- /misc/okeechobee_rsult.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/okeechobee_rsult.PNG -------------------------------------------------------------------------------- /misc/okeechobee_study_site.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/okeechobee_study_site.PNG -------------------------------------------------------------------------------- /misc/spectral_modulation_landsat8/LS8_TM_all_classes__Chilikha.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_landsat8/LS8_TM_all_classes__Chilikha.PNG -------------------------------------------------------------------------------- /misc/spectral_modulation_landsat8/LS8_TM_all_classes__Okeechobe.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_landsat8/LS8_TM_all_classes__Okeechobe.PNG -------------------------------------------------------------------------------- /misc/spectral_modulation_landsat8/LS8_TM_swir_water__Chilikha.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_landsat8/LS8_TM_swir_water__Chilikha.PNG -------------------------------------------------------------------------------- /misc/spectral_modulation_landsat8/LS8_TM_swir_water__Okeechobe.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_landsat8/LS8_TM_swir_water__Okeechobe.PNG -------------------------------------------------------------------------------- /misc/spectral_modulation_sentinel2A/Sentinel2A_TM_all_classes__Chilikha_Sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_sentinel2A/Sentinel2A_TM_all_classes__Chilikha_Sentinel.png -------------------------------------------------------------------------------- /misc/spectral_modulation_sentinel2A/Sentinel2A_TM_all_classes__Okeechobe_Sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_sentinel2A/Sentinel2A_TM_all_classes__Okeechobe_Sentinel.png -------------------------------------------------------------------------------- /misc/spectral_modulation_sentinel2A/Sentinel2A_TM_swir_water__Chilikha_Sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_sentinel2A/Sentinel2A_TM_swir_water__Chilikha_Sentinel.png -------------------------------------------------------------------------------- /misc/spectral_modulation_sentinel2A/Sentinel2A_TM_swir_water__Okeechobe_Sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/spectral_modulation_sentinel2A/Sentinel2A_TM_swir_water__Okeechobe_Sentinel.png -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/chilikha_ndci_t167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/chilikha_ndci_t167.png -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/chilikha_ndwi_lmc_t144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/chilikha_ndwi_lmc_t144.png -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/chilikha_ndwi_wc_t130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/chilikha_ndwi_wc_t130.png -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/ndci_FreqVsGreyscale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/ndci_FreqVsGreyscale.PNG -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/ndwi_lmc_FreqVsGreyscale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/ndwi_lmc_FreqVsGreyscale.PNG -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/ndwi_wc_FreqVsGreyscale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/ndwi_wc_FreqVsGreyscale.PNG -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/okeechobee_ndci_FreqVsGreyScale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/okeechobee_ndci_FreqVsGreyScale.PNG -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/okeechobee_ndci_t150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/okeechobee_ndci_t150.png -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/okeechobee_ndwi_lmc_FreqVsGreyScale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/okeechobee_ndwi_lmc_FreqVsGreyScale.PNG -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/okeechobee_ndwi_lmc_t194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/okeechobee_ndwi_lmc_t194.png -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/okeechobee_ndwi_wc_FreqVsGreyScale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/okeechobee_ndwi_wc_FreqVsGreyScale.PNG -------------------------------------------------------------------------------- /misc/thresholding_sentinel2A/okeechobee_ndwi_wc_t110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/misc/thresholding_sentinel2A/okeechobee_ndwi_wc_t110.png -------------------------------------------------------------------------------- /papers/First Derivative RS Inland Water Quality Indices.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/papers/First Derivative RS Inland Water Quality Indices.pdf -------------------------------------------------------------------------------- /papers/ndwi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/papers/ndwi.pdf -------------------------------------------------------------------------------- /spectral_modulation_landsat8.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chintan2108/Water-Based-Indices-on-Sentinel-2A-Images-using-Python/HEAD/spectral_modulation_landsat8.ipynb --------------------------------------------------------------------------------