├── .gitattributes ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── annotated_shapefiles └── OSW_ODW_Shapefiles.zip ├── images ├── OSW.jpeg └── TOA.jpeg ├── opticallyshallowdeep ├── __init__.py ├── check_transpose.py ├── cloud_mask.py ├── find_epsg.py ├── make_multiband_image.py ├── make_vertical_strips.py ├── models │ ├── SR.h5 │ └── TOA.h5 ├── netcdf_to_multiband_geotiff.py ├── parse_string.py ├── process_as_strips.py ├── run.py └── write_georef_image.py ├── setup.py └── tests └── osd_test.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include opticallyshallowdeep *.h5 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/README.md -------------------------------------------------------------------------------- /annotated_shapefiles/OSW_ODW_Shapefiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/annotated_shapefiles/OSW_ODW_Shapefiles.zip -------------------------------------------------------------------------------- /images/OSW.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/images/OSW.jpeg -------------------------------------------------------------------------------- /images/TOA.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/images/TOA.jpeg -------------------------------------------------------------------------------- /opticallyshallowdeep/__init__.py: -------------------------------------------------------------------------------- 1 | from .run import * -------------------------------------------------------------------------------- /opticallyshallowdeep/check_transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/check_transpose.py -------------------------------------------------------------------------------- /opticallyshallowdeep/cloud_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/cloud_mask.py -------------------------------------------------------------------------------- /opticallyshallowdeep/find_epsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/find_epsg.py -------------------------------------------------------------------------------- /opticallyshallowdeep/make_multiband_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/make_multiband_image.py -------------------------------------------------------------------------------- /opticallyshallowdeep/make_vertical_strips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/make_vertical_strips.py -------------------------------------------------------------------------------- /opticallyshallowdeep/models/SR.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/models/SR.h5 -------------------------------------------------------------------------------- /opticallyshallowdeep/models/TOA.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/models/TOA.h5 -------------------------------------------------------------------------------- /opticallyshallowdeep/netcdf_to_multiband_geotiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/netcdf_to_multiband_geotiff.py -------------------------------------------------------------------------------- /opticallyshallowdeep/parse_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/parse_string.py -------------------------------------------------------------------------------- /opticallyshallowdeep/process_as_strips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/process_as_strips.py -------------------------------------------------------------------------------- /opticallyshallowdeep/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/run.py -------------------------------------------------------------------------------- /opticallyshallowdeep/write_georef_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/opticallyshallowdeep/write_georef_image.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/setup.py -------------------------------------------------------------------------------- /tests/osd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yulunwu8/Optically-Shallow-Deep/HEAD/tests/osd_test.py --------------------------------------------------------------------------------