Available also on: Delphi | .NET | Java | ActiveX.
False Easting (X coordinate offset) in meters. Shifts projected coordinates east; valid for selected projections.
# Python @property def FalseEasting( self ) -> float: @FalseEasting.setter def FalseEasting( self, _value: float ) -> None:
| Type |
|---|
| float |
PURPOSE: Adjust X coordinates to avoid negative values or set arbitrary origin. UTM uses 500,000m to ensure all X coords positive within zone.
BEHAVIOR: Added to all projected X coordinates. Typical values: UTM 500,000m, State Plane 200,000m to 10,000,000m.
USAGE: proj.FalseEasting := 500000.0; (UTM)
CONSTRAINTS: Must be consistent with coordinate system definition to avoid data corruption.