Public Transit API¶
PublicTransitApi
¶
Bases: HEREApi
A python interface into the HERE Public Transit API
Source code in herepy/public_transit_api.py
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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
|
__init__(api_key=None, timeout=None)
¶
Returns a PublicTransitApi instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
api_key |
str
|
API key taken from HERE Developer Portal. |
None
|
timeout |
int
|
Timeout limit for requests. |
None
|
Source code in herepy/public_transit_api.py
20 21 22 23 24 25 26 27 28 29 30 |
|
calculate_route(departure, arrival, time, max_connections=3, changes=-1, lang='en', include_modes=None, exclude_modes=None, units='metric', max_walking_distance=2000, walking_speed=100, show_arrival_times=True, graph=False, routing_mode=PublicTransitRoutingMode.schedule)
¶
Request a public transit route between any two places.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
departure |
List
|
List contains latitude and longitude in order. |
required |
arrival |
List
|
List contains latitude and longitude in order. |
required |
time |
str
|
time formatted in yyyy-mm-ddThh:mm:ss. |
required |
max_connections |
int
|
Specifies the number of following departure/arrivals the response should include. The possible values are: 1-6. |
3
|
changes |
int
|
Specifies the maximum number of changes or transfers allowed in a route. 0-6 or -1. The default is -1 (which disables the filter, or unlimited no of changes permitted). |
-1
|
lang |
str
|
Specifies the language of the response. |
'en'
|
include_modes |
List[PublicTransitModeType]
|
Specifies the transit type filter used to determine which types of transit to include in the response. |
None
|
exclude_modes |
List[PublicTransitModeType]
|
Specifies the transit type filter used to determine which types of transit to exclude in the response. |
None
|
units |
str
|
Units of measurement used. metric oder imperial. |
'metric'
|
max_walking_distance |
int
|
Specifies a maximum walking distance in meters. Allowed values are 0-6000. |
2000
|
walking_speed |
int
|
Specifies the walking speed in percent of normal walking speed. Allowed values are 50-200. |
100
|
show_arrival_times |
boolean
|
flag to indicate if response should show arrival times or departure times. |
True
|
graph |
boolean
|
flag to indicate if response should contain coordinate pairs to allow the drawing of a polyline for the route. |
False
|
routing_type |
PublicTransitRoutingType
|
type of routing. Default is time_tabled. |
required |
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
|
coverage_nearby(details, center)
¶
Request a list of transit operators and station coverage nearby.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
details |
int
|
0 disables showing line info, 1 enables showing line info.abs |
required |
center |
List
|
List contains latitude and longitude in order. |
required |
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
|
coverage_witin_a_city(city_name, political_view, max=None, details=1, lang='en')
¶
Request a list of transit operator coverage within a specified city.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
city_name |
str
|
the name or part of the name of the search city. |
required |
political_view |
int
|
1 enables, 0 disables grouping results. |
required |
max |
int
|
maximum number of results. |
None
|
details |
int
|
with 1 supported list of operators and population added to response. Set to 0 just return the matching city names. |
1
|
lang |
str
|
the language of the response, default |
'en'
|
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
find_stations_by_id(ids, lang)
¶
Request details of a specific transit station based on a previous request.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ids |
List
|
List contains station ids. |
required |
lang |
str
|
language code for response like |
required |
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
|
find_stations_by_name(center, name, max_count=5, method=PublicTransitSearchMethod.fuzzy, radius=20000)
¶
Request a list of public transit stations based on name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
center |
List
|
List contains latitude and longitude in order. |
required |
name |
str
|
station name. |
required |
max_count |
int
|
maximum number of stations (Default is 5). |
5
|
method |
enum
|
Matching method from PublicTransitSearchMethod (Default is fuzzy). |
PublicTransitSearchMethod.fuzzy
|
radius |
int
|
specifies radius in kilometers (Default is 20000km). |
20000
|
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
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 |
|
find_stations_nearby(center, radius=500, max_count=5)
¶
Request a list of public transit stations within a given geo-location.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
center |
List
|
List contains latitude and longitude in order. |
required |
radius |
int
|
specifies radius in meters (Default is 500m). |
500
|
max_count |
int
|
maximum number of stations (Default is 5). |
5
|
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
find_transit_coverage_in_cities(center, political_view, radius)
¶
Request a list of transit operators available in cities nearby.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
center |
List
|
List contains latitude and longitude in order. |
required |
political_view |
str
|
switch for grouping results like |
required |
radius |
int
|
specifies radius in meters. |
required |
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
next_departures_for_stations(station_ids, time, lang='en', max=40, max_station=40)
¶
Request a list of all next departure times and destinations for a give list of stations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
station_ids |
List
|
a list of stop ids. |
required |
time |
str
|
time formattes in yyyy-mm-ddThh:mm:ss. |
required |
lang |
str
|
language code for response like |
'en'
|
max |
int
|
maximum number of next departures per station. Default is 40. |
40
|
max_station |
int
|
maximum number of stations for which departures are required. Default is 40. |
40
|
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
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 |
|
next_departures_from_location(center, time, lang='en', max=40, max_station=40)
¶
Request a list of all next departure times and destinations from a given location.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
center |
List
|
List contains latitude and longitude in order. |
required |
time |
str
|
time formattes in yyyy-mm-ddThh:mm:ss. |
required |
lang |
str
|
language code for response like |
'en'
|
max |
int
|
maximum number of next departures per station. Default is 40. |
40
|
max_station |
int
|
maximum number of stations for which departures are required. Default is 40. |
40
|
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
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 |
|
next_nearby_departures_of_station(station_id, time, lang='en')
¶
Request a list of next departure times and destinations of a particular station.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
lang |
str
|
language code for response like |
'en'
|
station_id |
int
|
station id for departures. |
required |
time |
str
|
time formattes in yyyy-mm-ddThh:mm:ss. |
required |
Returns:
Type | Description |
---|---|
Optional[PublicTransitResponse]
|
PublicTransitResponse |
Source code in herepy/public_transit_api.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
|