Route Matching API¶
RmeApi
¶
Bases: HEREApi
A python interface into the RME API
Source code in herepy/rme_api.py
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 |
|
__init__(api_key=None, timeout=None)
¶
Returns a RmeApi 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/rme_api.py
18 19 20 21 22 23 24 25 26 27 28 |
|
match_route(gpx_file_content, route_mode='car', pde_layers=[])
¶
Retrieves misc information about the route given in gpx file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gpxfile |
content (str
|
gpx file content as string |
required |
routemode |
str
|
route mode ('car') |
required |
pde_layers |
str list
|
PDE layers to retrieve e.g.: ROAD_GEOM_FCn(TUNNEL) SPEED_LIMITS_FCn(FROM_REF_SPEED_LIMIT,TO_REF_SPEED_LIMIT) ADAS_ATTRIB_FCn(SLOPES) or e.g., ROAD_GEOM_FCn() SPEED_LIMITS_FCn() |
[]
|
Returns:
Type | Description |
---|---|
Optional[RmeResponse]
|
RmeResponse |
Source code in herepy/rme_api.py
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 |
|