├── .gitignore ├── LICENSE ├── README.md ├── rpcm ├── __about__.py ├── __init__.py ├── cli.py ├── geo.py ├── rpc_file_readers.py ├── rpc_model.py └── utils.py ├── setup.py └── tests ├── aoi.geojson ├── test_localization.py ├── test_rpc_comparison.py ├── test_rpc_constructors.py ├── test_rpc_file_parsing.py ├── test_rpc_files ├── 20191015_073816_ssc1d3_0011_basic_l1a_panchromatic_dn_RPC.TXT ├── ENMAP01-____L1B-DT0000001011_20220609T081225Z_001_V010111_20230119T143357Z-METADATA.XML ├── JAX_068_001_RGB.json ├── rpc_IKONOS.txt ├── rpc_PLANET_L1A.txt ├── rpc_PLANET_L1B.txt ├── rpc_PLEIADES.xml ├── rpc_SPOT6.xml ├── rpc_WV1.xml ├── rpc_WV2.xml ├── rpc_WV3.xml └── rpc_unsupported.xml └── tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist/ 3 | *.egg-info/ 4 | .ipynb_checkpoints 5 | __pycache__/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/README.md -------------------------------------------------------------------------------- /rpcm/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/__about__.py -------------------------------------------------------------------------------- /rpcm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/__init__.py -------------------------------------------------------------------------------- /rpcm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/cli.py -------------------------------------------------------------------------------- /rpcm/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/geo.py -------------------------------------------------------------------------------- /rpcm/rpc_file_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/rpc_file_readers.py -------------------------------------------------------------------------------- /rpcm/rpc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/rpc_model.py -------------------------------------------------------------------------------- /rpcm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/rpcm/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/setup.py -------------------------------------------------------------------------------- /tests/aoi.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/aoi.geojson -------------------------------------------------------------------------------- /tests/test_localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_localization.py -------------------------------------------------------------------------------- /tests/test_rpc_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_comparison.py -------------------------------------------------------------------------------- /tests/test_rpc_constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_constructors.py -------------------------------------------------------------------------------- /tests/test_rpc_file_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_file_parsing.py -------------------------------------------------------------------------------- /tests/test_rpc_files/20191015_073816_ssc1d3_0011_basic_l1a_panchromatic_dn_RPC.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/20191015_073816_ssc1d3_0011_basic_l1a_panchromatic_dn_RPC.TXT -------------------------------------------------------------------------------- /tests/test_rpc_files/ENMAP01-____L1B-DT0000001011_20220609T081225Z_001_V010111_20230119T143357Z-METADATA.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/ENMAP01-____L1B-DT0000001011_20220609T081225Z_001_V010111_20230119T143357Z-METADATA.XML -------------------------------------------------------------------------------- /tests/test_rpc_files/JAX_068_001_RGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/JAX_068_001_RGB.json -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_IKONOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_IKONOS.txt -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_PLANET_L1A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_PLANET_L1A.txt -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_PLANET_L1B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_PLANET_L1B.txt -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_PLEIADES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_PLEIADES.xml -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_SPOT6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_SPOT6.xml -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_WV1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_WV1.xml -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_WV2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_WV2.xml -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_WV3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_WV3.xml -------------------------------------------------------------------------------- /tests/test_rpc_files/rpc_unsupported.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/test_rpc_files/rpc_unsupported.xml -------------------------------------------------------------------------------- /tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centreborelli/rpcm/HEAD/tests/tests.sh --------------------------------------------------------------------------------