-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrips-for-location.ts
305 lines (242 loc) · 7.15 KB
/
trips-for-location.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import * as Core from '../core';
import * as Shared from './shared';
export class TripsForLocation extends APIResource {
/**
* Retrieve trips for a given location
*/
list(
query: TripsForLocationListParams,
options?: Core.RequestOptions,
): Core.APIPromise<TripsForLocationListResponse> {
return this._client.get('/api/where/trips-for-location.json', { query, ...options });
}
}
export interface TripsForLocationListResponse extends Shared.ResponseWrapper {
data: TripsForLocationListResponse.Data;
}
export namespace TripsForLocationListResponse {
export interface Data {
/**
* Indicates if the limit of trips has been exceeded
*/
limitExceeded: boolean;
list: Array<Data.List>;
references: Shared.References;
/**
* Indicates if the search location is out of range
*/
outOfRange?: boolean;
}
export namespace Data {
export interface List {
schedule: List.Schedule;
status: List.Status;
tripId: string;
frequency?: string | null;
serviceDate?: number;
situationIds?: Array<string>;
}
export namespace List {
export interface Schedule {
nextTripId: string;
previousTripId: string;
stopTimes: Array<Schedule.StopTime>;
timeZone: string;
frequency?: string | null;
}
export namespace Schedule {
export interface StopTime {
arrivalTime?: number;
departureTime?: number;
distanceAlongTrip?: number;
historicalOccupancy?: string;
stopHeadsign?: string;
stopId?: string;
}
}
export interface Status {
/**
* Trip ID of the trip the vehicle is actively serving.
*/
activeTripId: string;
/**
* Index of the active trip into the sequence of trips for the active block.
*/
blockTripSequence: number;
/**
* ID of the closest stop to the current location of the transit vehicle.
*/
closestStop: string;
/**
* Distance, in meters, the transit vehicle has progressed along the active trip.
*/
distanceAlongTrip: number;
/**
* Last known distance along the trip received in real-time from the transit
* vehicle.
*/
lastKnownDistanceAlongTrip: number;
/**
* Timestamp of the last known real-time location update from the transit vehicle.
*/
lastLocationUpdateTime: number;
/**
* Timestamp of the last known real-time update from the transit vehicle.
*/
lastUpdateTime: number;
/**
* Capacity of the transit vehicle in terms of occupancy.
*/
occupancyCapacity: number;
/**
* Current count of occupants in the transit vehicle.
*/
occupancyCount: number;
/**
* Current occupancy status of the transit vehicle.
*/
occupancyStatus: string;
/**
* Current journey phase of the trip.
*/
phase: string;
/**
* Indicates if real-time arrival info is available for this trip.
*/
predicted: boolean;
/**
* Deviation from the schedule in seconds (positive for late, negative for early).
*/
scheduleDeviation: number;
/**
* Time, in milliseconds since the Unix epoch, of midnight for the start of the
* service date for the trip.
*/
serviceDate: number;
/**
* Current status modifiers for the trip.
*/
status: string;
/**
* Total length of the trip, in meters.
*/
totalDistanceAlongTrip: number;
/**
* Time offset from the closest stop to the current position of the transit vehicle
* (in seconds).
*/
closestStopTimeOffset?: number;
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
/**
* Last known location of the transit vehicle.
*/
lastKnownLocation?: Status.LastKnownLocation;
/**
* Last known orientation value received in real-time from the transit vehicle.
*/
lastKnownOrientation?: number;
/**
* ID of the next stop the transit vehicle is scheduled to arrive at.
*/
nextStop?: string;
/**
* Time offset from the next stop to the current position of the transit vehicle
* (in seconds).
*/
nextStopTimeOffset?: number;
/**
* Orientation of the transit vehicle, represented as an angle in degrees.
*/
orientation?: number;
/**
* Current position of the transit vehicle.
*/
position?: Status.Position;
/**
* Distance, in meters, the transit vehicle is scheduled to have progressed along
* the active trip.
*/
scheduledDistanceAlongTrip?: number;
/**
* References to situation elements (if any) applicable to this trip.
*/
situationIds?: Array<string>;
/**
* ID of the transit vehicle currently serving the trip.
*/
vehicleId?: string;
}
export namespace Status {
/**
* Last known location of the transit vehicle.
*/
export interface LastKnownLocation {
/**
* Latitude of the last known location of the transit vehicle.
*/
lat?: number;
/**
* Longitude of the last known location of the transit vehicle.
*/
lon?: number;
}
/**
* Current position of the transit vehicle.
*/
export interface Position {
/**
* Latitude of the current position of the transit vehicle.
*/
lat?: number;
/**
* Longitude of the current position of the transit vehicle.
*/
lon?: number;
}
}
}
}
}
export interface TripsForLocationListParams {
/**
* The latitude coordinate of the search center
*/
lat: number;
/**
* Latitude span of the search bounding box
*/
latSpan: number;
/**
* The longitude coordinate of the search center
*/
lon: number;
/**
* Longitude span of the search bounding box
*/
lonSpan: number;
/**
* Whether to include full schedule elements in the tripDetails section. Defaults
* to false.
*/
includeSchedule?: boolean;
/**
* Whether to include full trip elements in the references section. Defaults to
* false.
*/
includeTrip?: boolean;
/**
* Specific time for the query. Defaults to the current time.
*/
time?: number;
}
export declare namespace TripsForLocation {
export {
type TripsForLocationListResponse as TripsForLocationListResponse,
type TripsForLocationListParams as TripsForLocationListParams,
};
}