├── .gitattributes ├── .gitignore ├── GreenComparev2.gif ├── Readme.md ├── download GSV images ├── Readme.md ├── create_GSV_webscript.py ├── downloadGSV.py ├── get_PanID_Bottom_Half.txt └── get_PanID_Top_Half.txt ├── download NDVI └── extractNDVIGoogleEarthPonts.py └── process GSV images ├── GSV2.cpp ├── statVals.cpp └── statVals.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/.gitignore -------------------------------------------------------------------------------- /GreenComparev2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/GreenComparev2.gif -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/Readme.md -------------------------------------------------------------------------------- /download GSV images/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/download GSV images/Readme.md -------------------------------------------------------------------------------- /download GSV images/create_GSV_webscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/download GSV images/create_GSV_webscript.py -------------------------------------------------------------------------------- /download GSV images/downloadGSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/download GSV images/downloadGSV.py -------------------------------------------------------------------------------- /download GSV images/get_PanID_Bottom_Half.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/download GSV images/get_PanID_Bottom_Half.txt -------------------------------------------------------------------------------- /download GSV images/get_PanID_Top_Half.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/download GSV images/get_PanID_Top_Half.txt -------------------------------------------------------------------------------- /download NDVI/extractNDVIGoogleEarthPonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/download NDVI/extractNDVIGoogleEarthPonts.py -------------------------------------------------------------------------------- /process GSV images/GSV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/process GSV images/GSV2.cpp -------------------------------------------------------------------------------- /process GSV images/statVals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/process GSV images/statVals.cpp -------------------------------------------------------------------------------- /process GSV images/statVals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkinandy/GSV_NDVI_Comparison/HEAD/process GSV images/statVals.hpp --------------------------------------------------------------------------------