# SIMCONNECT_POSITION_REFERENTIAL The **SIMCONNECT\_POSITION\_REFERENTIAL** enum is used to define what reference is being used for the camera position.   ##### Syntax ``` cpp enum SIMCONNECT_POSITION_REFERENTIAL { SIMCONNECT_POSITION_REFERENTIAL_NONE, SIMCONNECT_POSITION_REFERENTIAL_AIRCRAFT, SIMCONNECT_POSITION_REFERENTIAL_WORLD, SIMCONNECT_POSITION_REFERENTIAL_EYEPOINT }; ```   ##### Members {{< table-wrapper >}} | Member | Description | |--------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `SIMCONNECT_POSITION_REFERENTIAL_NONE` | No reference (this should not be used). | | `SIMCONNECT_POSITION_REFERENTIAL_AIRCRAFT` | The position is an offset from the aircraft [Datum Reference Point](../../../../content-configuration/modular-simobjects/aircraft/aircraft/#datum-reference-point) (expressed in meters). | | `SIMCONNECT_POSITION_REFERENTIAL_WORLD` | The position is expressed using latitude, longitude, and altitude. | | `SIMCONNECT_POSITION_REFERENTIAL_EYEPOINT` | The position is an offset from the aircraft pilot eyepoint (expressed in meters). | {{< /table-wrapper >}}   ##### Remarks This enum will be used by the `SimConnect_CameraGet` and other camera functions.