3. Project file structure#

3.1. Project area#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

Polygon (3D)

Geometry of a flight line defined by at least two points (multiple points with terrain following mode).


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::2056"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "LineString",
                                "coordinates": [
                                        [
                                                2588035.04790288,
                                                1162502.5902007,
                                                3658
                                        ],
                                        [
                                                2611559.75,
                                                1173703.75,
                                                3658
                                        ]
                                ]
                        },
                        "properties": {
                                "LineID": "64-1",
                                "LinePart": 1,
                                "parentGUID": 64,
                                "AltFt": 12000,
                                "Sensor": "iXM-100 90mm",
                                "SensorLabel": "iXM-100 90mm"
                        }
                },
                {
                        "type": "Feature",
                        "id": "2",
                        "geometry": {
                                "type": "LineString",
                                "coordinates": [
                                        [
                                                2588822.40396624,
                                                1163634.27262422,
                                                3884
                                        ],
                                        [
                                                2610410.25,
                                                1173913.25,
                                                3884
                                        ]
                                ]
                        },
                        "properties": {
                                "LineID": "65-1",
                                "LinePart": 1,
                                "parentGUID": 65,
                                "AltFt": 12743,
                                "Sensor": "iXM-100 90mm",
                                "SensorLabel": "iXM-100 90mm"
                        }
                }
        ]
}

3.2. Flight lines#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

LineString (3D)

Geometry of a flight line defined by at least two points (Multiple points with terrain following mode)

properties.LineID

String

Identifier of the line feature: contains parent and part number

properties.LinePart

Integer

Number of the section for broken lines (jumps in height)

properties.LineGUID

Integer

Identifier of the line with all its sections

properties.AltFt

Float

Flying height in feet (flying height in meters is available through the geometry)

properties.Sensor

String

Reference to the sensor

properties.SensorLabel

String

Name of the sensor


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::2056"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "LineString",
                                "coordinates": [
                                        [
                                                2588035.04790288,
                                                1162502.5902007,
                                                3658
                                        ],
                                        [
                                                2611559.75,
                                                1173703.75,
                                                3658
                                        ]
                                ]
                        },
                        "properties": {
                                "LineID": "64-1",
                                "LinePart": 1,
                                "parentGUID": 64,
                                "AltFt": 12000,
                                "Sensor": "iXM-100 90mm",
                                "SensorLabel": "iXM-100 90mm"
                        }
                },
                {
                        "type": "Feature",
                        "id": "2",
                        "geometry": {
                                "type": "LineString",
                                "coordinates": [
                                        [
                                                2588822.40396624,
                                                1163634.27262422,
                                                3884
                                        ],
                                        [
                                                2610410.25,
                                                1173913.25,
                                                3884
                                        ]
                                ]
                        },
                        "properties": {
                                "LineID": "65-1",
                                "LinePart": 1,
                                "parentGUID": 65,
                                "AltFt": 12743,
                                "Sensor": "iXM-100 90mm",
                                "SensorLabel": "iXM-100 90mm"
                        }
                }
        ]
}

3.3. Footprint#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

Polygon (3D)

Geometry of the footprint of a flight line

properties.LineID

String

Reference to the line feature. Contains parent and part number of the flight line

properties.LinePart

Integer

Number of the section for broken lines (jumps in height)

properties.parentGUID

Integer

Identifier of the line with all its sections

properties.Sensor

String

Reference to the sensor

properties.SensorLabel

String

Name of the sensor


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::32632"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "Polygon",
                                "coordinates": [
                                        [
                                                [
                                                        394415.34375,
                                                        5181742.5,
                                                        589
                                                ],
                                                [
                                                        394593.5625,
                                                        5181811.5,
                                                        584
                                                ],
                                                [
                                                        394788.71875,
                                                        5181310.5,
                                                        571
                                                ]
                                        ]
                                ]
                        },
                        "properties": {
                                "LineID": "1-1",
                                "LinePart": 1,
                                "parentGUID": 1,
                                "Sensor": "SFS 40Deg",
                                "SensorLabel": "Nadir"
                        }
                }
        ]
}

3.4. Overlap#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

LineString (3D)

Geometry of the overlap between two flight lines

properties.DesiredOverlapA2B

Float

The overlap which should be achieved

properties.OverlapA2B

Float

Calculated overlap (A to B)

properties.OverlapB2A

Float

Calculated overlap (B to A)

properties.LineA

String

Identifier of the original flight line

properties.LineB

String

Identifier to the newly calculated parallel flight line


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::32632"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "Polygon",
                                "coordinates": [
                                        [
                                                [
                                                        362498.601511608,
                                                        5185605.35137494,
                                                        652,
                                                        0
                                                ],

                                                [
                                                        362498.601511608,
                                                        5185605.35137494,
                                                        652,
                                                        0
                                                ]
                                        ]
                                ]
                        },
                        "properties": {
                                "Desired Overlap": 60.0000023841858,
                                "Calculated Overlap": 60.2755546569824,
                                "Line A": "1-1",
                                "Line B": "2-1"
                        }
                }
        ]
}

3.5. Image positions#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

Point (3D)

Geometry of a single trigger point

properties.ParentLineID

String

Reference to the flight line

properties.ImageID

Integer

Unique identifier for the image center per flight line (part)

properties.Sensor

String

Reference to the sensor

properties.SensorLabel

String

Name of the sensor


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::32631"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "Point",
                                "coordinates": [
                                        1985195,
                                        -3877698,
                                        4901
                                ]
                        },
                        "properties": {
                                "ParentLineID": "1-1",
                                "ImageID": 0,
                                "Sensor": "iXM-100 RSM - 145.8 mm",
                                "SensorLabel": "iXM-100 RSM - 145.8 mm"
                        }
                },
                {
                        "type": "Feature",
                        "id": "2",
                        "geometry": {
                                "type": "Point",
                                "coordinates": [
                                        1985477.375,
                                        -3877571.25,
                                        4901
                                ]
                        },
                        "properties": {
                                "ParentLineID": "1-1",
                                "ImageID": 1,
                                "Sensor": "iXM-100 RSM - 145.8 mm",
                                "SensorLabel": "iXM-100 RSM - 145.8 mm"
                        }
                }
        ]
}

3.6. Image footprints#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

Polygon (3D)

Geometry of a single camera footprint

properties.ParentLineID

String

Reference to the flight line.

properties.ImageID

Integer

Unique identifier for the image center per flight line (part)

properties.Sensor

String

Reference to the sensor

properties.SensorLabel

String

Name of the sensor


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::32632"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "Polygon",
                                "coordinates": [
                                        [
                                                [
                                                        395883.3125,
                                                        5177691.5,
                                                        558.000061035156
                                                ],
                                                [
                                                        395918.0625,
                                                        5177711,
                                                        558.000061035156
                                                ],
                                                [
                                                        395952.8125,
                                                        5177730,
                                                        558.000061035156
                                                ],
                                                [
                                                        395883.3125,
                                                        5177691.5,
                                                        558.000061035156
                                                ]
                                        ]
                                ]
                        },
                        "properties": {
                                "ParentLineID": "1-1",
                                "ImageID": 0,
                                "Sensor": "iXM-100 SK - 110 mm",
                                "SensorLabel": "Nadir"
                        }
                }
        ]
}

3.7. Ground control points#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

Point (3D)

Location of a control point

properties.Label

Integer

Number of the point

properties.Type

String

Type of point - supported values are [‘Check point’, ‘Control point’]


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::2056"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "Point",
                                "coordinates": [
                                        337512.326315537,
                                        6253509.51594597
                                ]
                        },
                        "properties": {
                                "Label": 1,
                                "Type": "Control point"
                        }
                },
                {
                        "type": "Feature",
                        "id": "2",
                        "geometry": {
                                "type": "Point",
                                "coordinates": [
                                        330849.84780142,
                                        6254270.43646684
                                ]
                        },
                        "properties": {
                                "Label": 2,
                                "Type": "Check point"
                        }
                }
        ]
}

3.8. Grid#

Feature fields

Property name

Type

Description

type

String

= “Feature”

id

String

Unique identifier of the feature

geometry

LineString (2D)

Geometry of a line parallel to the grid

properties.Label

String

Text for the line label

properties.Orientation

Float

Orientation of the text: 0 = null = horizontally


Example

{
        "type": "FeatureCollection",
        "crs": {
                "type": "name",
                "properties": {
                        "name": "urn:ogc:def:crs:EPSG::2056"
                }
        },
        "features": [
                {
                        "type": "Feature",
                        "id": "1",
                        "geometry": {
                                "type": "LineString",
                                "coordinates": [
                                        [
                                                2566658.99277013,
                                                1148793.68525381
                                        ],
                                        [
                                                2571675.63904461,
                                                1148765.9940965
                                        ],
                                        [
                                                2646925.64083526,
                                                1148849.57123472
                                        ],
                                        [
                                                2651942.32914653,
                                                1148888.71786035
                                        ]
                                ]
                        },
                        "properties": {
                                "Label": "46deg 30' 0.00\"  N",
                                "Orientation": null
                        }
                }
        ]
}