Konvertierung in kartographische Koordinaten | |
Map Conversion |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcMapConversion | ADDED |
The map conversion deals with transforming the local engineering coordinate system, often called world coordinate system, into the coordinate reference system of the underlying map.
NOTE The IfcMapConversion does not handle the projection of a map from the geodetic coordinate reference system.
The map conversion allows to convert the local origin of the local engineering coordinate system to its place within a map (easting, northing, orthogonal height) and to rotate the x-axis of the local engineering coordinate system within the horizontal (easting/westing) plane of the map.
NOTE The z axis of the local engineering coordinate system is always parallel to the z axis of the map coordinate system.
The scale factor can be used when the length unit for the 3 axes of the map coordinate system are not identical with the length unit established for this project (see IfcProject.UnitsInContext), if omitted, the scale factor 1.0 is assumed.
HISTORY New entity in IFC4
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
3 | Eastings | IfcLengthMeasure | [1:1] |
Specifies the location along the easting of the coordinate system of the target map coordinate reference system.
NOTE for right-handed Cartesian coordinate systems this would establish the location along the x axis. | X |
4 | Northings | IfcLengthMeasure | [1:1] |
Specifies the location along the northing of the coordinate system of the target map coordinate reference system.
NOTE for right-handed Cartesian coordinate systems this would establish the location along the y axis | X |
5 | OrthogonalHeight | IfcLengthMeasure | [1:1] |
Orthogonal height relativ to the vertical datum specified.
NOTE for right-handed Cartesian coordinate systems this would establish the location along the z axis | X |
6 | XAxisAbscissa | IfcReal | [0:1] |
Specifies the value along the easing axis of the end point of a vector indicating the position of the local x axis of the engineering coordinate reference system.
NOTE 1 for right-handed Cartesian coordinate systems this would establish the location along the x axis NOTE 2 together with the XAxisOrdinate it provides the direction of the local x axis within the horizontal plane of the map coordinate system | X |
7 | XAxisOrdinate | IfcReal | [0:1] |
Specifies the value along the northing axis of the end point of a vector indicating the position of the local x axis of the engineering coordinate reference system.
NOTE 1 for right-handed Cartesian coordinate systems this would establish the location along the y axis XAxisAbscissa it provides the direction of the local x axis within the horizontal plane of the map coordinate system. | X |
8 | Scale | IfcReal | [0:1] | Scale to be used, when the units of the CRS are not identical to the units of the engineering coordinate system. If omited, the value of 1.0 is assumed. | X |
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
IfcCoordinateOperation | |||||
1 | SourceCRS | IfcCoordinateReferenceSystemSelect | [1:1] | Source coordinate reference system for the operation. | X |
2 | TargetCRS | IfcCoordinateReferenceSystem | [1:1] | Target coordinate reference system for the operation. | X |
IfcMapConversion | |||||
3 | Eastings | IfcLengthMeasure | [1:1] |
Specifies the location along the easting of the coordinate system of the target map coordinate reference system.
NOTE for right-handed Cartesian coordinate systems this would establish the location along the x axis. | X |
4 | Northings | IfcLengthMeasure | [1:1] |
Specifies the location along the northing of the coordinate system of the target map coordinate reference system.
NOTE for right-handed Cartesian coordinate systems this would establish the location along the y axis | X |
5 | OrthogonalHeight | IfcLengthMeasure | [1:1] |
Orthogonal height relativ to the vertical datum specified.
NOTE for right-handed Cartesian coordinate systems this would establish the location along the z axis | X |
6 | XAxisAbscissa | IfcReal | [0:1] |
Specifies the value along the easing axis of the end point of a vector indicating the position of the local x axis of the engineering coordinate reference system.
NOTE 1 for right-handed Cartesian coordinate systems this would establish the location along the x axis NOTE 2 together with the XAxisOrdinate it provides the direction of the local x axis within the horizontal plane of the map coordinate system | X |
7 | XAxisOrdinate | IfcReal | [0:1] |
Specifies the value along the northing axis of the end point of a vector indicating the position of the local x axis of the engineering coordinate reference system.
NOTE 1 for right-handed Cartesian coordinate systems this would establish the location along the y axis XAxisAbscissa it provides the direction of the local x axis within the horizontal plane of the map coordinate system. | X |
8 | Scale | IfcReal | [0:1] | Scale to be used, when the units of the CRS are not identical to the units of the engineering coordinate system. If omited, the value of 1.0 is assumed. | X |
<xs:element name="IfcMapConversion" type="ifc:IfcMapConversion" substitutionGroup="ifc:IfcCoordinateOperation" nillable="true"/>
<xs:complexType name="IfcMapConversion">
<xs:complexContent>
<xs:extension base="ifc:IfcCoordinateOperation">
<xs:attribute name="Eastings" type="ifc:IfcLengthMeasure" use="optional"/>
<xs:attribute name="Northings" type="ifc:IfcLengthMeasure" use="optional"/>
<xs:attribute name="OrthogonalHeight" type="ifc:IfcLengthMeasure" use="optional"/>
<xs:attribute name="XAxisAbscissa" type="ifc:IfcReal" use="optional"/>
<xs:attribute name="XAxisOrdinate" type="ifc:IfcReal" use="optional"/>
<xs:attribute name="Scale" type="ifc:IfcReal" use="optional"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
ENTITY IfcMapConversion
SUBTYPE OF (IfcCoordinateOperation);
Eastings : IfcLengthMeasure;
Northings : IfcLengthMeasure;
OrthogonalHeight : IfcLengthMeasure;
XAxisAbscissa : OPTIONAL IfcReal;
XAxisOrdinate : OPTIONAL IfcReal;
Scale : OPTIONAL IfcReal;
END_ENTITY;