├── .gitignore ├── Makefile ├── README.md ├── doc ├── readme.doc └── readme.txt ├── env.sh ├── include ├── cproj.h ├── epsg_datum.inc ├── epsg_ellipse.inc ├── epsg_gcs.inc ├── epsg_pcs.inc ├── epsg_pm.inc ├── epsg_proj.inc ├── epsg_units.inc ├── epsg_vertcs.inc ├── geo_config.h ├── geo_ctrans.inc ├── geo_keyp.h ├── geo_normalize.h ├── geo_tiffp.h ├── geokeys.h ├── geokeys.inc ├── geonames.h ├── geotiff.h ├── geotiffio.h ├── geovalues.h ├── proj.h ├── tiff.h ├── tiffconf.h ├── tiffio.h ├── tiffvers.h └── xtiffio.h ├── source ├── Makefile ├── lndortho.cps_par.ini ├── lndortho.env ├── lndortho.h ├── lndortho_compute.c ├── lndortho_gchk.c ├── lndortho_io.c ├── lndortho_main.c ├── lndortho_util.c └── version └── tests ├── ASTER_example.inp ├── ASTER_mixed_example.inp ├── CBERS_example.inp ├── DEM_reprojection.inp ├── ETM_MSS_coreg.inp ├── ETM_example.inp ├── ETM_ortho_only.inp ├── MSS_ETM_coreg.inp ├── MSS_example1.inp ├── MSS_example2.inp ├── TM_example.inp ├── TM_example_reproject.inp ├── aster_ortho.cps_par.ini ├── lndortho.Amazon_MSS.cps_par.ini ├── lndortho.MSS.cps_par.ini ├── lndortho.cps_par.ini ├── orthoASTER.all_data_type.csh └── verification_example.inp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/README.md -------------------------------------------------------------------------------- /doc/readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/doc/readme.doc -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/doc/readme.txt -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/env.sh -------------------------------------------------------------------------------- /include/cproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/cproj.h -------------------------------------------------------------------------------- /include/epsg_datum.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_datum.inc -------------------------------------------------------------------------------- /include/epsg_ellipse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_ellipse.inc -------------------------------------------------------------------------------- /include/epsg_gcs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_gcs.inc -------------------------------------------------------------------------------- /include/epsg_pcs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_pcs.inc -------------------------------------------------------------------------------- /include/epsg_pm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_pm.inc -------------------------------------------------------------------------------- /include/epsg_proj.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_proj.inc -------------------------------------------------------------------------------- /include/epsg_units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_units.inc -------------------------------------------------------------------------------- /include/epsg_vertcs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/epsg_vertcs.inc -------------------------------------------------------------------------------- /include/geo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geo_config.h -------------------------------------------------------------------------------- /include/geo_ctrans.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geo_ctrans.inc -------------------------------------------------------------------------------- /include/geo_keyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geo_keyp.h -------------------------------------------------------------------------------- /include/geo_normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geo_normalize.h -------------------------------------------------------------------------------- /include/geo_tiffp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geo_tiffp.h -------------------------------------------------------------------------------- /include/geokeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geokeys.h -------------------------------------------------------------------------------- /include/geokeys.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geokeys.inc -------------------------------------------------------------------------------- /include/geonames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geonames.h -------------------------------------------------------------------------------- /include/geotiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geotiff.h -------------------------------------------------------------------------------- /include/geotiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geotiffio.h -------------------------------------------------------------------------------- /include/geovalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/geovalues.h -------------------------------------------------------------------------------- /include/proj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/proj.h -------------------------------------------------------------------------------- /include/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/tiff.h -------------------------------------------------------------------------------- /include/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/tiffconf.h -------------------------------------------------------------------------------- /include/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/tiffio.h -------------------------------------------------------------------------------- /include/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/tiffvers.h -------------------------------------------------------------------------------- /include/xtiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/include/xtiffio.h -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/lndortho.cps_par.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho.cps_par.ini -------------------------------------------------------------------------------- /source/lndortho.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho.env -------------------------------------------------------------------------------- /source/lndortho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho.h -------------------------------------------------------------------------------- /source/lndortho_compute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho_compute.c -------------------------------------------------------------------------------- /source/lndortho_gchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho_gchk.c -------------------------------------------------------------------------------- /source/lndortho_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho_io.c -------------------------------------------------------------------------------- /source/lndortho_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho_main.c -------------------------------------------------------------------------------- /source/lndortho_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/source/lndortho_util.c -------------------------------------------------------------------------------- /source/version: -------------------------------------------------------------------------------- 1 | 2.2.6 2 | -------------------------------------------------------------------------------- /tests/ASTER_example.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/ASTER_example.inp -------------------------------------------------------------------------------- /tests/ASTER_mixed_example.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/ASTER_mixed_example.inp -------------------------------------------------------------------------------- /tests/CBERS_example.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/CBERS_example.inp -------------------------------------------------------------------------------- /tests/DEM_reprojection.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/DEM_reprojection.inp -------------------------------------------------------------------------------- /tests/ETM_MSS_coreg.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/ETM_MSS_coreg.inp -------------------------------------------------------------------------------- /tests/ETM_example.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/ETM_example.inp -------------------------------------------------------------------------------- /tests/ETM_ortho_only.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/ETM_ortho_only.inp -------------------------------------------------------------------------------- /tests/MSS_ETM_coreg.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/MSS_ETM_coreg.inp -------------------------------------------------------------------------------- /tests/MSS_example1.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/MSS_example1.inp -------------------------------------------------------------------------------- /tests/MSS_example2.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/MSS_example2.inp -------------------------------------------------------------------------------- /tests/TM_example.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/TM_example.inp -------------------------------------------------------------------------------- /tests/TM_example_reproject.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/TM_example_reproject.inp -------------------------------------------------------------------------------- /tests/aster_ortho.cps_par.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/aster_ortho.cps_par.ini -------------------------------------------------------------------------------- /tests/lndortho.Amazon_MSS.cps_par.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/lndortho.Amazon_MSS.cps_par.ini -------------------------------------------------------------------------------- /tests/lndortho.MSS.cps_par.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/lndortho.MSS.cps_par.ini -------------------------------------------------------------------------------- /tests/lndortho.cps_par.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/lndortho.cps_par.ini -------------------------------------------------------------------------------- /tests/orthoASTER.all_data_type.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/orthoASTER.all_data_type.csh -------------------------------------------------------------------------------- /tests/verification_example.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-silva/arop/HEAD/tests/verification_example.inp --------------------------------------------------------------------------------