EOEXPORT

Export Exterior Orientation Data


EnvironmentsPYTHON :: EASI :: MODELER
Quick linksDescription :: Parameters :: Parameter descriptions :: Return Value :: Details :: Example :: Related

Back to top

Description


EOEXPORT lets you export the exterior orientation data from an CATALYST Professional OrthoEngine project file into a text file.
Back to top

Parameters


eoexport(oeproji, tfile)

Name Type Caption Length Value range
OEPROJI * str Input OrthoEngine project file 1 -    
TFILE * str Output text file 1 -    

* Required parameter
Back to top

Parameter descriptions

OEPROJI

Specifies the name of the OrthoEngine project file that contains the exterior orientation data to be exported. The specified project file must exist and should contain valid exterior orientation information.

TFILE

Specifies the text file to which the exterior orientation data is written.

Back to top

Return Value

Returns: Mapunits string

Type:  PCI_STRING

The return value is the mapunits string for the Exterior Orientation file. This function returns only if it executes successfully; otherwise, it throws an exception.

Back to top

Details

EOEXPORT exports the exterior orientation data from a CATALYST Professional OrthoEngine project file to a text file. The text file is created the first time and then overwritten with the latest data. The data is exported without any header and in the ImageID X Y Z Omega Phi Kappa format. The file can later be imported using EOIMPORT.

Note: If the specified OrthoEngine project includes any inactive images, they are excluded from processing.
Back to top

Example

Export the exterior orientation data in 'airphoto_model.prj' into a text file called 'EOExport.txt'.

from pci.eoexport import eoexport

oeproji = 'airphoto_model.prj'   # input OrthoEngine project file
tfile   = 'EOExport.txt'         # input text file

eoexport (oeproji, tfile)
		

© PCI Geomatics Enterprises, Inc.®, 2026. All rights reserved.