├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── icesat-2_major_activities_0.xlsx ├── icesat2_atl03_atbd_r005_0.pdf └── icesat2_atl03_data_dict_v005.pdf ├── environment.yml ├── img ├── profile_window_full.png ├── reef_profile.png ├── refraction_corrected.png ├── sliderule_pane.png ├── sliderule_pane_w_tracks.png └── topobathy_profile.png ├── manual_tool.py ├── openoceans ├── __init__.py ├── geoaoi.py ├── icesat2.py ├── modeling.py └── waveform.py ├── pyproject.toml └── sample_data ├── gbr_reef_ATL03_20210817155409_08401208_005_01.h5 └── put_h5_files_here.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/README.md -------------------------------------------------------------------------------- /docs/icesat-2_major_activities_0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/docs/icesat-2_major_activities_0.xlsx -------------------------------------------------------------------------------- /docs/icesat2_atl03_atbd_r005_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/docs/icesat2_atl03_atbd_r005_0.pdf -------------------------------------------------------------------------------- /docs/icesat2_atl03_data_dict_v005.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/docs/icesat2_atl03_data_dict_v005.pdf -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/environment.yml -------------------------------------------------------------------------------- /img/profile_window_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/img/profile_window_full.png -------------------------------------------------------------------------------- /img/reef_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/img/reef_profile.png -------------------------------------------------------------------------------- /img/refraction_corrected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/img/refraction_corrected.png -------------------------------------------------------------------------------- /img/sliderule_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/img/sliderule_pane.png -------------------------------------------------------------------------------- /img/sliderule_pane_w_tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/img/sliderule_pane_w_tracks.png -------------------------------------------------------------------------------- /img/topobathy_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/img/topobathy_profile.png -------------------------------------------------------------------------------- /manual_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/manual_tool.py -------------------------------------------------------------------------------- /openoceans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/openoceans/__init__.py -------------------------------------------------------------------------------- /openoceans/geoaoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/openoceans/geoaoi.py -------------------------------------------------------------------------------- /openoceans/icesat2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/openoceans/icesat2.py -------------------------------------------------------------------------------- /openoceans/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/openoceans/modeling.py -------------------------------------------------------------------------------- /openoceans/waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/openoceans/waveform.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample_data/gbr_reef_ATL03_20210817155409_08401208_005_01.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonm3D/OpenOceans/HEAD/sample_data/gbr_reef_ATL03_20210817155409_08401208_005_01.h5 -------------------------------------------------------------------------------- /sample_data/put_h5_files_here.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------