gis-tools-ts - v0.6.0
    Preparing search index...

    Interface GBFSGeofencingZonesV31RC

    GBFS Geofencing Zones Schema V3.1-RC

    Describes geofencing zones and their associated rules and attributes (added in v2.1-RC).

    interface GBFSGeofencingZonesV31RC {
        data: {
            geofencing_zones: FeatureCollection<
                undefined,
                Properties,
                GBFSGeofencingZonesV3Properties,
            >;
            global_rules: {
                maximum_speed_kph?: number;
                ride_end_allowed: boolean;
                ride_start_allowed: boolean;
                ride_through_allowed: boolean;
                station_parking?: boolean;
                vehicle_type_ids?: string[];
            }[];
        };
        last_updated: string;
        ttl: number;
        version: "3.1-RC";
    }
    Index

    Properties

    data: {
        geofencing_zones: FeatureCollection<
            undefined,
            Properties,
            GBFSGeofencingZonesV3Properties,
        >;
        global_rules: {
            maximum_speed_kph?: number;
            ride_end_allowed: boolean;
            ride_start_allowed: boolean;
            ride_through_allowed: boolean;
            station_parking?: boolean;
            vehicle_type_ids?: string[];
        }[];
    }

    Array that contains geofencing information for the system.

    Type declaration

    • geofencing_zones: FeatureCollection<undefined, Properties, GBFSGeofencingZonesV3Properties>

      Geofencing zones and their associated rules and attributes.

    • global_rules: {
          maximum_speed_kph?: number;
          ride_end_allowed: boolean;
          ride_start_allowed: boolean;
          ride_through_allowed: boolean;
          station_parking?: boolean;
          vehicle_type_ids?: string[];
      }[]

      Global rules defining restrictions that apply globally in all areas.

    last_updated: string

    Last time the data in the feed was updated in RFC3339 format. format date-time

    ttl: number

    Number of seconds before the data in the feed will be updated again (0 if the data should always be refreshed). minimum 0

    version: "3.1-RC"

    GBFS version number to which the feed conforms, according to the versioning framework.