├── MANIFEST.in ├── PhoREAL_User_Manual_v3.30.pdf ├── README.md ├── ResearchLicense_SourceCode_PhoREALv1.0.doc ├── images ├── PhoREAL_screenshot_v3.28.png ├── PhoREAL_screenshot_v3.30.png └── readme.txt ├── notebooks ├── .ipynb_checkpoints │ ├── Quick Start Demo-checkpoint.ipynb │ └── Quick_Start_Demo-checkpoint.ipynb ├── Quick_Start_Demo.ipynb └── processing_example.ipynb ├── phoreal ├── CalVal.py ├── Viewer_Online_blank.html ├── Viewer_blank.html ├── __init__.py ├── __pycache__ │ ├── CalVal.cpython-311.pyc │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── ace.cpython-311.pyc │ ├── ace.cpython-36.pyc │ ├── binner.cpython-311.pyc │ ├── getAtlMeasuredSwath_auto.cpython-36.pyc │ ├── getAtlMeasuredSwath_auto.cpython-38.pyc │ ├── getAtlTruthSwath_auto.cpython-36.pyc │ ├── getMeasurementError.cpython-311.pyc │ ├── getMeasurementError.cpython-36.pyc │ ├── getMeasurementError_auto.cpython-36.pyc │ ├── gui_addins.cpython-311.pyc │ ├── gui_addins.cpython-36.pyc │ ├── gui_addins.cpython-38.pyc │ ├── icesatBin.cpython-38.pyc │ ├── icesatBinner.cpython-36.pyc │ ├── icesatBinner.cpython-38.pyc │ ├── icesatCalVal.cpython-36.pyc │ ├── icesatIO.cpython-36.pyc │ ├── icesatIO.cpython-38.pyc │ ├── icesatPlot.cpython-36.pyc │ ├── icesatReader.cpython-36.pyc │ ├── icesatReader.cpython-38.pyc │ ├── icesatReader.cpython-39.pyc │ ├── icesatReference.cpython-36.pyc │ ├── icesatUtils.cpython-36.pyc │ ├── icesatUtils.cpython-38.pyc │ ├── icesatUtils.cpython-39.pyc │ ├── io.cpython-311.pyc │ ├── plot.cpython-311.pyc │ ├── reader.cpython-311.pyc │ ├── reference.cpython-311.pyc │ └── utils.cpython-311.pyc ├── ace.py ├── acer.c ├── acer.cpython-36m-x86_64-linux-gnu.so ├── atl_processor.py ├── atl_to_las.py ├── binner.py ├── closest.c ├── closest.exe ├── closest_x64.dll ├── getMeasurementError.py ├── gui_addins.py ├── io.py ├── laszip.exe ├── pho_image.ico ├── phorealc.so ├── plot.py ├── reader.py ├── reference.py └── utils.py ├── requirements.txt └── setup.py /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PhoREAL_User_Manual_v3.30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/PhoREAL_User_Manual_v3.30.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/README.md -------------------------------------------------------------------------------- /ResearchLicense_SourceCode_PhoREALv1.0.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/ResearchLicense_SourceCode_PhoREALv1.0.doc -------------------------------------------------------------------------------- /images/PhoREAL_screenshot_v3.28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/images/PhoREAL_screenshot_v3.28.png -------------------------------------------------------------------------------- /images/PhoREAL_screenshot_v3.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/images/PhoREAL_screenshot_v3.30.png -------------------------------------------------------------------------------- /images/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Quick Start Demo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/notebooks/.ipynb_checkpoints/Quick Start Demo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Quick_Start_Demo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/notebooks/.ipynb_checkpoints/Quick_Start_Demo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/Quick_Start_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/notebooks/Quick_Start_Demo.ipynb -------------------------------------------------------------------------------- /notebooks/processing_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/notebooks/processing_example.ipynb -------------------------------------------------------------------------------- /phoreal/CalVal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/CalVal.py -------------------------------------------------------------------------------- /phoreal/Viewer_Online_blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/Viewer_Online_blank.html -------------------------------------------------------------------------------- /phoreal/Viewer_blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/Viewer_blank.html -------------------------------------------------------------------------------- /phoreal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__init__.py -------------------------------------------------------------------------------- /phoreal/__pycache__/CalVal.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/CalVal.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/ace.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/ace.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/ace.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/ace.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/binner.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/binner.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/getAtlMeasuredSwath_auto.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/getAtlMeasuredSwath_auto.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/getAtlMeasuredSwath_auto.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/getAtlMeasuredSwath_auto.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/getAtlTruthSwath_auto.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/getAtlTruthSwath_auto.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/getMeasurementError.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/getMeasurementError.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/getMeasurementError.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/getMeasurementError.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/getMeasurementError_auto.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/getMeasurementError_auto.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/gui_addins.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/gui_addins.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/gui_addins.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/gui_addins.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/gui_addins.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/gui_addins.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatBin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatBin.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatBinner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatBinner.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatBinner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatBinner.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatCalVal.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatCalVal.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatIO.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatIO.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatIO.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatIO.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatPlot.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatPlot.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatReader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatReader.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatReader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatReader.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatReader.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatReader.cpython-39.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatReference.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatReference.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatUtils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatUtils.cpython-36.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatUtils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatUtils.cpython-38.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/icesatUtils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/icesatUtils.cpython-39.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/io.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/io.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/plot.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/plot.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/reader.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/reader.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/reference.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/reference.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /phoreal/ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/ace.py -------------------------------------------------------------------------------- /phoreal/acer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/acer.c -------------------------------------------------------------------------------- /phoreal/acer.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/acer.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /phoreal/atl_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/atl_processor.py -------------------------------------------------------------------------------- /phoreal/atl_to_las.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/atl_to_las.py -------------------------------------------------------------------------------- /phoreal/binner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/binner.py -------------------------------------------------------------------------------- /phoreal/closest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/closest.c -------------------------------------------------------------------------------- /phoreal/closest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/closest.exe -------------------------------------------------------------------------------- /phoreal/closest_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/closest_x64.dll -------------------------------------------------------------------------------- /phoreal/getMeasurementError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/getMeasurementError.py -------------------------------------------------------------------------------- /phoreal/gui_addins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/gui_addins.py -------------------------------------------------------------------------------- /phoreal/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/io.py -------------------------------------------------------------------------------- /phoreal/laszip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/laszip.exe -------------------------------------------------------------------------------- /phoreal/pho_image.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/pho_image.ico -------------------------------------------------------------------------------- /phoreal/phorealc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/phorealc.so -------------------------------------------------------------------------------- /phoreal/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/plot.py -------------------------------------------------------------------------------- /phoreal/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/reader.py -------------------------------------------------------------------------------- /phoreal/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/reference.py -------------------------------------------------------------------------------- /phoreal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/phoreal/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icesat-2UT/PhoREAL/HEAD/setup.py --------------------------------------------------------------------------------