UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

37 lines 1.35 kB
import { GTFSRealtimeTranslatedString } from '../index.js'; import type { PbfReader } from '../../../index.js'; export * from './timeEvent.js'; export * from './update.js'; /** The type of wheelchair boarding accessibility at a stop. */ export declare const enum GTFSRealtimeWheelchairBoarding { UNKNOWN = 0, AVAILABLE = 1, NOT_AVAILABLE = 2 } /** * Describes a stop which is served by trips. All fields are as described in the GTFS-Static specification. * NOTE: This message is still experimental, and subject to change. It may be formally adopted in the future. */ export declare class GTFSRealtimeStop { #private; stopId?: string; stopCode?: GTFSRealtimeTranslatedString; stopName?: GTFSRealtimeTranslatedString; ttsStopName?: GTFSRealtimeTranslatedString; stopDesc?: GTFSRealtimeTranslatedString; stopLat?: number; stopLon?: number; zoneId?: string; stopUrl?: GTFSRealtimeTranslatedString; parentStation?: string; stopTimezone?: string; wheelchairBoarding: GTFSRealtimeWheelchairBoarding; levelId?: string; platformCode?: GTFSRealtimeTranslatedString; /** * @param pbf - The Protobuf object to read from * @param end - The end position of the message in the buffer */ constructor(pbf: PbfReader, end: number); } //# sourceMappingURL=index.d.ts.map