Represents a house number associated with a segment. It provides information about the house number itself, its location, and its relation to the segment.

interface HouseNumber {
    fractionPoint: null | Point;
    geometry: Point;
    id: string;
    number: string;
    segmentId: number;
}

Properties

fractionPoint: null | Point

An optional GeoJSON Point representing a fractional part of the house number's location. This is useful when a house number is located between two other house numbers on a segment. For example if house number 10 is on the segment, then this house may be 10.5 and in this case the fraction part of the house will be stored in this property.

geometry: Point

The GeoJSON Point representing the precise location of the house number. This is the main coordinate for the house number.

id: string
number: string

The house number itself as a string.

segmentId: number

The ID of the segment to which this house number is associated.

MMNEPVFCICPMFPCPTTAAATR