This is the REST documentation for all service provided by Targomo GmbH. This ranges from the Isochrone API service to Travel Time API as well as Fleet API. For more information and detailed examples please have a look at targomo.com/developers.
If you are developing client side applications, or with Node.js, you might consider using our TypeScript/JavaScript library as a convenience, and to enable certain cartographic features.
The Targomo API uses API keys to authenticate requests, and you therefore need an API key to use the API - see our pricing page to sign up for your API key. You can view and manage your API keys at dashboard.targomo.com. API keys are provided to a request as a query parameter or in the POST body, depending on the request - Each request's documentation will indicate the specific way the API key should be referenced.
Returns Vector Tile GL-style json
style required | string Example: osm-bright-gl-style Name of style. |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Returns raw MVT-format map tile.
dataset required | string Enum: "openmaptiles" "germanypostal" Name of source dataset. |
z required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Returns style TileJSON file
style required | string Example: osm-bright-gl-style Name of style. |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Returns PNG map tile
style required | string Example: osm-bright-gl-style Name of style. |
z required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
r | string Enum: "@2x" "@3x" Example: @2x Optional multiplier for rendering HiDPI (retina) tiles |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Provides detailed analysis of Points of Interest (POIs). Retrieve metadata about POIs (Such as types, tags, service keys or hierarchy), or create visualizations (.mvt
or geojson
) to enhance your maps.
This request retrieves an mvt tile of the POIs that match the requested POI groups or OSM types. The POIs can be requested as hexagons or nodes.
For the tile format (google) see here.
Response type is "application/octet-stream".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
group | Array of strings Example: group=g_education&group=g_electro Group id(s) of the POI hierarchy. |
clusters | object Example: c_1=g_education&c_2=g_electro&c_3=amenity=bar List of cluster definitions. Only supported for node requests. With node requests, when zoomed far out, some POIs that are close to each other are clustered to be displayed as a single geometry. With this parameter, one can define different cluster groups. Each cluster name must start with |
exclude | Array of strings Example: exclude=computer&exclude=amenity=kindergarten List of OSM tags (separated by |
match | string Enum: "any" "all" Type of match for the combination of tags. |
layerType | string Enum: "node" "hexagon" Desired layer type for the tiles |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This request retrieves a GeoJSON tile of the POIs that match the requested POI groups or OSM types. The POIs can be requested as hexagons or nodes.
Response type is "application/json".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
group | Array of strings Example: group=g_education&group=g_electro Group id(s) of the POI hierarchy. |
clusters | object Example: c_1=g_education&c_2=g_electro&c_3=amenity=bar List of cluster definitions. Only supported for node requests. With node requests, when zoomed far out, some POIs that are close to each other are clustered to be displayed as a single geometry. With this parameter, one can define different cluster groups. Each cluster name must start with |
exclude | Array of strings Example: exclude=computer&exclude=amenity=kindergarten List of OSM tags (separated by |
match | string Enum: "any" "all" Type of match for the combination of tags. |
layerType | string Enum: "node" "hexagon" Desired layer type for the tiles |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service registers a POI request configuration and returns a uuid
that can be used to request the same POIs as mvt tile.
Necessary for this service:
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "osmTypes": [
- {
- "key": "c_1",
- "value": "restaurant"
}, - {
- "key": "c_2",
- "value": "g_shop"
}
], - "format": "geojson",
- "serviceKey": "__targomo_key_here__"
}
230ef01e-7701-41d1-8340-aa9848f97620
This service returns an mvt tile of points of interest (POIs) for a given uuid corresponding to an already registered POI configuration (/register
). The POIs can be requested as hexagons or nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/octet-stream".
Necessary for this service: uuid
+ apiKey
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerType | string Enum: "node" "hexagon" Desired layer type for the tiles |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an mvt tile of reachable points of interest (POIs) for an already registered configuration. The POIs can be requested as hexagons or nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/json".
Necessary for this service: uuid
+ apiKey
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerType | string Enum: "node" "hexagon" Desired layer type for the tiles |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This request retrieves all POIs that match the requested POI groups or OSM types inside a bounding box.
Response type is "application/json".
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
northEastX required | number Example: northEastX=13.4247584 The North East X (longitude) coordinate of the desired bounding box. |
northEastY required | number Example: northEastY=52.4895795 The North East Y (latitude) coordinate of the desired bounding box. |
southWestX required | number Example: southWestX=13.4347586 The South West X (longitude) coordinate of the desired bounding box. |
southWestY required | number Example: southWestY=52.4995797 The South West Y (latitude) coordinate of the desired bounding box. |
group | Array of strings Example: group=g_education&group=g_electro Group id(s) of the POI hierarchy. |
osmType | object Example: amenity=bar&cuisine=* OSM tags key-value pair(s). See OSM map features for a complete list of features. A wildcard (*) can also be used to retrieve all POIs that contain one key. For example, "cuisine=*" |
exclude | Array of strings Example: exclude=computer&exclude=amenity=kindergarten List of OSM tags (separated by |
match | string Enum: "any" "all" Type of match for the combination of tags. |
[- {
- "id": "0_502545685",
- "lat": 52.516952,
- "lng": 13.40229,
- "type": "node",
- "osmType": "amenity=restaurant,cuisine=greek",
- "groupIds": [
- "restaurant"
], - "tags": {
- "name": "Taverna Odysseus",
- "addr:street": "Friedelstraße",
- "addr:city": "Berlin",
- "amenity": "restaurant",
- "cuisine": "greek"
}
}
]
This request retrieves the info of a list of POIs from their Ids.
Nomenclature of the ids:
0_ means that the requested POI is a node.
1_ means that the requested POI is a way (a line or a polygon).
Theses prefixes are followed by the id of the object in the OSM database.
If the id is negative, it means that the node or the way derives from a relation.
Response type is "application/json".
poiIds required | Array of strings Example: 0_502545685,1_23971045,1_-2925020 List of POI Ids |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
This request returns a list of OSM keys that the service accepts in its requests.
Response type is "application/json".
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
[- "shop",
- "amenity",
- "historic"
]
This request returns all OSM tag values of the requested tagKey
that exist in the Places Layers and Places Context API database.
Response type is "application/json".
tagKey required | string Example: shop OSM key that is supported by the service. |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
text | string Example: text=b A suggested term to which the results will be similar. |
limit | integer Example: limit=20 Maximum number of results retrieved by the service. |
[- {
- "name": "supermarket",
- "count": 10953
}
]
This request returns the POI hierarchy supported by the service. The POI Hierarchy is a tree of POI groups that one can use to request groups of POI by their ids.
Response type is "application/json".
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
{- "id": "g_shop",
- "type": "CATEGORY",
- "name": "Shopping",
- "description": "Places where to shop",
- "contents": [
- {
- "id": "g_food",
- "name": "Food-beverages",
- "description": "Shops with food and beverages",
- "type": "CATEGORY",
- "contents": [
- {
- "id": "supermarket",
- "name": "Supermarket",
- "description": "A large store for groceries and other goods.",
- "type": "TAG",
- "key": "shop",
- "value": "supermarket"
}, - {
- "id": "convenience",
- "name": "Convenience",
- "description": "A convenience store.",
- "type": "TAG",
- "key": "shop",
- "value": "convenience"
}
]
}
]
}
The Statistics Layers API provides detailed information about available statistics data for Statistic Collections or groups. Collections are generally sets of statistical data (such as the Berlin census) while groups within an collection provide that data at different resolutions (e.g. 500m or 200m per cell).
Returns Statistics Layers (mvt tiles) of the statistic collection via statistic group with the highest resolution by given collection id.
collection required | integer Example: 100 statistic collection for layer |
z required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statistics | string Example: statistics=statistics=0&statistics=1&statistics=2 Statistics id list to return in the response. |
sumStatistics | boolean Default: false If true also return the sum of all given statistics values. The default is false. |
useDb | string Default: false If true, generate result from db, else use in memory data. If false, serviceUrl parameter must be used. The default is false. |
Returns Statistics Layers (GeoJSON) of the statistic collection via statistic group with the highest resolution by given collection id.
collection required | integer Example: 100 statistic collection for layer |
z required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statistics | string Example: statistics=statistics=0&statistics=1&statistics=2 Statistics id list to return in the response. |
sumStatistics | boolean Default: false If true also return the sum of all given statistics values. The default is false. |
useDb | string Default: false If true, generate result from db, else use in memory data. If false, serviceUrl parameter must be used. The default is false. |
{- "data": {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 13.3656,
- 52.5907,
- 0
], - [
- 13.367,
- 52.6086,
- 0
], - [
- 13.3965,
- 52.6078,
- 0
], - [
- 13.3951,
- 52.5898,
- 0
], - [
- 13.3656,
- 52.5907,
- 0
]
]
]
}, - "properties": {
- "wGrav": 0.497545,
- "wStatsAgg": 3083.784,
- "wStats": 6198
}
}
]
}, - "code": "ok",
- "message": "",
- "requestTime": "79"
}
Returns a list of Statistic Collections with metadata and component groups
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
collections | string Example: collections=1&collections=2&collections=3 Specific collections as string |
endpoint | string Specific endpoint name |
locale | string Default: "en" Example: locale=de The two letter language code for the name and description language. |
{- "5": {
- "id": "5",
- "statisticGroupId": 33,
- "name": "Sweden: Employment and car ownership",
- "region": "Sweden",
- "version": "0.1",
- "license": "Public Use",
- "attribution": "© Statistics Sweden",
- "srid": 4326,
- "type": "GRID",
- "privacy_level": "public",
- "countries": [
- "SWE"
], - "boundingBox": {
- "top_right": {
- "lat": "55.0528162890534",
- "lng": "15.03278571492"
}, - "bottom_left": {
- "lat": "47.2923649910747",
- "lng": "5.86675746881417"
}
}, - "names": {
- "en": "Sweden: Employment and car ownership"
}, - "descriptions": {
- "en": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 100mx100m tiles."
}, - "topics": [
- {
- "subject_id": 3,
- "virtual_statistic_ids": null,
- "names": {
- "de": "Beschäftigung",
- "en": "Employment"
}, - "subject_names": {
- "en": "Economics"
}, - "icon": "accessibility",
- "id": 13,
- "statistic_ids": [
- 7,
- 8
], - "descriptions": null
}, - {
- "subject_id": 3,
- "virtual_statistic_ids": null,
- "names": {
- "de": "PKW",
- "en": "Cars"
}, - "subject_names": {
- "en": "Economics"
}, - "icon": "accessibility",
- "id": 14,
- "statistic_ids": [
- 0,
- 1,
- 2
], - "descriptions": null
}
], - "groups": [
- {
- "id": "33",
- "hierarchy": "1",
- "minZoomRecommendation": 0,
- "topicIds": [
- 13,
- 14
]
}, - {
- "id": "32",
- "hierarchy": "0",
- "minZoomRecommendation": 0,
- "topicIds": [
- 13,
- 14
]
}
],
}
}
Returns a list of Statistic Collections with overview metadata grouped by country (using the alpha-3 code).
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
{- "SWE": [
- {
- "collectionId": 5,
- "collectionName": "Sweden: Employment and car ownership",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "311",
- "privacyLevel": "public",
- "subGroups": [
- {
- "groupId": 33,
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "ignoreValues": null,
- "numberOfPoints": 290,
- "minZoom": 0,
- "memoryUsage": "616 kB",
- "hierarchy": 1,
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}, - {
- "groupId": "32,",
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "ignoreValues": "null,",
- "numberOfPoints": "21,",
- "minZoom": "0,",
- "memoryUsage": "272 kB",
- "hierarchy": "0,",
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}
], - "collectionMemory": "888 kB"
}, - {
- "collectionId": 19,
- "collectionName": "Sweden: SCB 2016",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "103890",
- "privacyLevel": "public",
- "subGroups": {
- "groupId": 31,
- "names": {
- "de": "Bevölkerung Schweden 1x1 km Raster",
- "en": "Population of Sweden 1x1 km Grid"
}, - "descriptions": {
- "de": "Dieser Datensatz enthält Bevölkerungsdaten von Schweden. Das Raster besteht aus 1x1 km Kacheln.",
- "en": "This dataset contains population data for Sweden. The raster consists of 1x1 km tiles."
}, - "ignoreValues": null,
- "numberOfPoints": 103890,
- "minZoom": 6,
- "memoryUsage": "5016 kB",
- "hierarchy": 0,
- "minZoomRecommendation": null,
- "topics": [
- "Bevölkerung",
- "Population"
]
}, - "collectionMemory": "5016 kB"
}
]
}
Returns a list of Statistic Collections for a specific country (using the alpha-3 code).
code required | string Example: SWE the Alpha-3 Three letter code of the country to be retrieved. Case insensitive |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
[- {
- "collectionId": 5,
- "collectionName": "Sweden: Employment and car ownership",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "311",
- "privacyLevel": "public",
- "subGroups": [
- {
- "groupId": 33,
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "ignoreValues": null,
- "numberOfPoints": 290,
- "minZoom": 0,
- "memoryUsage": "616 kB",
- "hierarchy": 1,
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}, - {
- "groupId": "32,",
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "ignoreValues": "null,",
- "numberOfPoints": "21,",
- "minZoom": "0,",
- "memoryUsage": "272 kB",
- "hierarchy": "0,",
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}
], - "collectionMemory": "888 kB"
}, - {
- "collectionId": 19,
- "collectionName": "Sweden: SCB 2016",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "103890",
- "privacyLevel": "public",
- "subGroups": {
- "groupId": 31,
- "names": {
- "de": "Bevölkerung Schweden 1x1 km Raster",
- "en": "Population of Sweden 1x1 km Grid"
}, - "descriptions": {
- "de": "Dieser Datensatz enthält Bevölkerungsdaten von Schweden. Das Raster besteht aus 1x1 km Kacheln.",
- "en": "This dataset contains population data for Sweden. The raster consists of 1x1 km tiles."
}, - "ignoreValues": null,
- "numberOfPoints": 103890,
- "minZoom": 6,
- "memoryUsage": "5016 kB",
- "hierarchy": 0,
- "minZoomRecommendation": null,
- "topics": [
- "Bevölkerung",
- "Population"
]
}, - "collectionMemory": "5016 kB"
}
]
Returns a list of Statistic Collections in the overview format.
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
[- {
- "collectionId": 5,
- "collectionName": "Sweden: Employment and car ownership",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "311",
- "privacyLevel": "public",
- "subGroups": [
- {
- "groupId": 33,
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "ignoreValues": null,
- "numberOfPoints": 290,
- "minZoom": 0,
- "memoryUsage": "616 kB",
- "hierarchy": 1,
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}, - {
- "groupId": "32,",
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "ignoreValues": "null,",
- "numberOfPoints": "21,",
- "minZoom": "0,",
- "memoryUsage": "272 kB",
- "hierarchy": "0,",
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}
], - "collectionMemory": "888 kB"
}, - {
- "collectionId": 19,
- "collectionName": "Sweden: SCB 2016",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "103890",
- "privacyLevel": "public",
- "subGroups": {
- "groupId": 31,
- "names": {
- "de": "Bevölkerung Schweden 1x1 km Raster",
- "en": "Population of Sweden 1x1 km Grid"
}, - "descriptions": {
- "de": "Dieser Datensatz enthält Bevölkerungsdaten von Schweden. Das Raster besteht aus 1x1 km Kacheln.",
- "en": "This dataset contains population data for Sweden. The raster consists of 1x1 km tiles."
}, - "ignoreValues": null,
- "numberOfPoints": 103890,
- "minZoom": 6,
- "memoryUsage": "5016 kB",
- "hierarchy": 0,
- "minZoomRecommendation": null,
- "topics": [
- "Bevölkerung",
- "Population"
]
}, - "collectionMemory": "5016 kB"
}
]
Returns a specified of Statistic Collection in the overview format.
collection required | integer Example: 5 The id of the Statistic Collection to be retrieved |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
[- {
- "collectionId": 5,
- "collectionName": "Sweden: Employment and car ownership",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "311",
- "privacyLevel": "public",
- "subGroups": [
- {
- "groupId": 33,
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "ignoreValues": null,
- "numberOfPoints": 290,
- "minZoom": 0,
- "memoryUsage": "616 kB",
- "hierarchy": 1,
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}, - {
- "groupId": "32,",
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "ignoreValues": "null,",
- "numberOfPoints": "21,",
- "minZoom": "0,",
- "memoryUsage": "272 kB",
- "hierarchy": "0,",
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}
], - "collectionMemory": "888 kB"
}
]
Returns a list of Statistic Collections with overview metadata grouped by collection region.
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
{- "sweden": [
- {
- "collectionId": 5,
- "collectionName": "Sweden: Employment and car ownership",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "311",
- "privacyLevel": "public",
- "subGroups": [
- {
- "groupId": 33,
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "ignoreValues": null,
- "numberOfPoints": 290,
- "minZoom": 0,
- "memoryUsage": "616 kB",
- "hierarchy": 1,
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}, - {
- "groupId": "32,",
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "ignoreValues": "null,",
- "numberOfPoints": "21,",
- "minZoom": "0,",
- "memoryUsage": "272 kB",
- "hierarchy": "0,",
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}
], - "collectionMemory": "888 kB"
}, - {
- "collectionId": 19,
- "collectionName": "Sweden: SCB 2016",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "103890",
- "privacyLevel": "public",
- "subGroups": {
- "groupId": 31,
- "names": {
- "de": "Bevölkerung Schweden 1x1 km Raster",
- "en": "Population of Sweden 1x1 km Grid"
}, - "descriptions": {
- "de": "Dieser Datensatz enthält Bevölkerungsdaten von Schweden. Das Raster besteht aus 1x1 km Kacheln.",
- "en": "This dataset contains population data for Sweden. The raster consists of 1x1 km tiles."
}, - "ignoreValues": null,
- "numberOfPoints": 103890,
- "minZoom": 6,
- "memoryUsage": "5016 kB",
- "hierarchy": 0,
- "minZoomRecommendation": null,
- "topics": [
- "Bevölkerung",
- "Population"
]
}, - "collectionMemory": "5016 kB"
}
]
}
Returns a list of Statistic Collections for a specific region.
region required | string Example: sweden The Statistic Collection region to retrieve collections for. Case insensitive |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
[- {
- "collectionId": 5,
- "collectionName": "Sweden: Employment and car ownership",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "311",
- "privacyLevel": "public",
- "subGroups": [
- {
- "groupId": 33,
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Gemeindeebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on municipality level."
}, - "ignoreValues": null,
- "numberOfPoints": 290,
- "minZoom": 0,
- "memoryUsage": "616 kB",
- "hierarchy": 1,
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}, - {
- "groupId": "32,",
- "names": {
- "de": "Schweden: Registrierte PKW und deren Eigentümer und Arbeitnehmer (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: Registered Vehicles and their type of ownership and gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "descriptions": {
- "de": "Schweden: Dieser Datensatz enthält Daten zu registrierten Personenkraftwagen (PKW) und deren Eigentümern sowie Daten zu Arbeitnehmern (16 Jahre oder älter) nach Branche und Geschlecht auf Provinzebene.",
- "en": "Sweden: This dataset contains data of registered passenger cars, their type of ownership and data of gainfully employed persons (16 years or older) by industry and sex on county level."
}, - "ignoreValues": "null,",
- "numberOfPoints": "21,",
- "minZoom": "0,",
- "memoryUsage": "272 kB",
- "hierarchy": "0,",
- "minZoomRecommendation": null,
- "topics": [
- "Beschäftigung",
- "Cars",
- "Employment",
- "PKW"
]
}
], - "collectionMemory": "888 kB"
}, - {
- "collectionId": 19,
- "collectionName": "Sweden: SCB 2016",
- "collectionRegion": "Sweden",
- "countries": [
- "SWE"
], - "total_points": "103890",
- "privacyLevel": "public",
- "subGroups": {
- "groupId": 31,
- "names": {
- "de": "Bevölkerung Schweden 1x1 km Raster",
- "en": "Population of Sweden 1x1 km Grid"
}, - "descriptions": {
- "de": "Dieser Datensatz enthält Bevölkerungsdaten von Schweden. Das Raster besteht aus 1x1 km Kacheln.",
- "en": "This dataset contains population data for Sweden. The raster consists of 1x1 km tiles."
}, - "ignoreValues": null,
- "numberOfPoints": 103890,
- "minZoom": 6,
- "memoryUsage": "5016 kB",
- "hierarchy": 0,
- "minZoomRecommendation": null,
- "topics": [
- "Bevölkerung",
- "Population"
]
}, - "collectionMemory": "5016 kB"
}
]
This API returns a list of polygons that visualize the reachability boundaries of given sources, e.g. a polygon for what is reachable within 10, 20, or 30 minutes.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Necessary for this API:
sources
(coordinates), sourceGeometries
(GeoJSON Linestrings, Polygons or Multipolygon) or a mix of both.Ignored parameters:
required | object (Polygon) Specifies the polygon that is requested |
Array of objects (TargetCore) | |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "sources": [
- {
- "id": "U Stadtmitte Berlin",
- "lat": 52.51042282571668,
- "lng": 13.38984489440918,
- "tm": {
- "bike": { }
}
}
], - "edgeWeight": "time",
- "polygon": {
- "values": [
- 100,
- 200,
- 300
], - "intersectionMode": "union",
- "serializer": "json"
}
}
{- "area": 783650.4006168544,
- "polygons": {
- "polygons": [
- {
- "area": 100056.34,
- "outerBoundary": [
- [
- 1490664,
- 6892945
], - [
- 1490633,
- 6892942
]
], - "innerBoundary": [
- [
- 1490783,
- 6892840
], - [
- 1490786,
- 6892810
], - [
- 1490783,
- 6892840
], - [
- 1490774,
- 6892928
]
], - "travelTime": 900
}, - {
- "area": 100056.34,
- "outerBoundary": [
- [
- 1490664,
- 6892945
], - [
- 1490633,
- 6892942
]
], - "innerBoundary": [
- [
- 1490783,
- 6892840
], - [
- 1490786,
- 6892810
], - [
- 1490783,
- 6892840
], - [
- 1490774,
- 6892928
]
], - "travelTime": 900
}
]
}
}
The Isochrone API can also be called as get request, where the Configuration Model is the query parameter cfg
.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"sources\":[\n {\n \"lat\":52.51042282571668,\n \"lng\":13.38984489440918,\n \"id\":\"U Stadtmitte Berlin\",\n \"tm\":{\"bike\":{}}\n },\n {\n \"lat\":52.50956088985956,\n \"lng\":13.377184867858887,\n \"id\":\"S Potsdamer Platz\",\n \"tm\":{\"bike\":{}}\n }\n ],\n \"edgeWeight\":\"time\",\n \"polygon\":{\n \"values\":[100,300,600],\n \"intersectionMode\":\"union\",\n \"serializer\":\"json\"\n }\n}" JSON Configuration as query parameter. |
{- "area": 783650.4006168544,
- "polygons": {
- "polygons": [
- {
- "area": 100056.34,
- "outerBoundary": [
- [
- 1490664,
- 6892945
], - [
- 1490633,
- 6892942
]
], - "innerBoundary": [
- [
- 1490783,
- 6892840
], - [
- 1490786,
- 6892810
], - [
- 1490783,
- 6892840
], - [
- 1490774,
- 6892928
]
], - "travelTime": 900
}, - {
- "area": 100056.34,
- "outerBoundary": [
- [
- 1490664,
- 6892945
], - [
- 1490633,
- 6892942
]
], - "innerBoundary": [
- [
- 1490783,
- 6892840
], - [
- 1490786,
- 6892810
], - [
- 1490783,
- 6892840
], - [
- 1490774,
- 6892928
]
], - "travelTime": 900
}
]
}
}
The Isochrone API can be called with tile and serialization specified as path parameters. This is only available for MVT. The tile and serialization in the request body will be overwritten.
This interface allows for easy integration with MapboxGL. For tile format (google) see here.
The Configuration Model is the query parameter cfg
.
Response type is "application/octet-stream".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"sources\":[\n {\n \"lat\":52.51042282571668,\n \"lng\":13.38984489440918,\n \"id\":\"U Stadtmitte Berlin\",\n \"tm\":{\"bike\":{}}\n },\n {\n \"lat\":52.50956088985956,\n \"lng\":13.377184867858887,\n \"id\":\"S Potsdamer Platz\",\n \"tm\":{\"bike\":{}}\n }\n ],\n \"edgeWeight\":\"time\",\n \"polygon\":{\n \"values\":[100,300,600],\n \"intersectionMode\":\"union\",\n \"serializer\":\"json\"\n }\n}" JSON Configuration as query parameter. |
Retrieve the travel time (in seconds) and the travel distance (in meters) between lists of sources and targets. If multiple sources and targets are set a result will be returned for each unique source-target pair.
Calculates the shortest travel times and lengths from all sources to all targets.
The run-time is mostly dependent on the number of sources and the maximum allowed edgeWeight.
Note: Despite the name the Travel Time API can also return the distance between sources and target in meters if "edgeWeight": "distance"
is specified.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Necessary for this API:
sources
(coordinates), sourceGeometries
(GeoJSON Linestrings, Polygons or Multipolygon) or a mix of both.required | Array of objects (TargetCore) |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": "2000",
- "sources": [
- {
- "id": "POI:0",
- "lat": 52.5494892,
- "lng": 13.42883045,
- "tm": {
- "car": { }
}
}
], - "targets": [
- {
- "id": "Home 1",
- "lat": 52.53068102,
- "lng": 13.50658456
}
]
}
{- "data": [
- {
- "id": "POI:0",
- "targets": [
- {
- "id": "Home 1",
- "travelTime": 746,
- "length": 1200
}
]
}
], - "code": "ok",
- "message": "",
- "requestTime": "2"
}
Calculates all optimal connections in a time frame for each source-target combination if the travel type is transit or the shortest travel time for other travel types. A connection is not optimal if it departs earlier and arrives later than another connection. The connections are returned as pairs of departure and arrival times, sorted by departure time. In addition the travel time for walking to the target (without using transit) is returned. This travel time may be "-1" in case the target is not reachable within maxEdgeWeight
by walking. If the travel type is not transit, the response is the same as for the Travel Time API.
The run-time is mostly dependent on the number of sources and maxEdgeWeight
.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Necessary for this API:
sources
(coordinates), sourceGeometries
(GeoJSON Linestrings, Polygons or Multipolygon) or a mix of both.required | Array of objects (TargetCore) |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": "2000",
- "sources": [
- {
- "id": "POI:0",
- "lat": 52.5494892,
- "lng": 13.42883045,
- "tm": {
- "transit": {
- "date": 20190314,
- "time": 36000,
- "duration": 7200
}
}
}
], - "targets": [
- {
- "id": "Home 1",
- "lat": 52.53068102,
- "lng": 13.50658456
}
]
}
{- "data": [
- {
- "id": "string",
- "targets": [
- {
- "id": "Home 1",
- "travelTimesTransit": [
- [
- 21547,
- 25896
]
], - "travelTimeWalk": 5746
}
]
}
], - "code": "ok",
- "message": "",
- "requestTime": "2"
}
Perform reachability based aggregations for a number of sources to perform fine tuned analyse of highly complex scenarios.
This API returns a MultiGraph representing a specified aggregation based on travel times or distances from the sources. You can answer questions like:
The resulting graph contains spatial information equivalent to the underlying map, i.e. roads, crossings, etc. Other heatmap types are possible, e.g. displaying the result in tiles.
Possible formats are GeoJSON, mvt and json.
It can be seen as a different visualization of the Isochrone API which allows for more customization with regards to the source aggregation/intersection as well as the serialization formats.
Response type is dependent on the chosen serialization type:
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
Necessary for this API:
sources
(coordinates), sourceGeometries
(GeoJSON Linestrings, Polygons or Multipolygon) or a mix of both.Ignored parameters:
required | object (MultiGraph) MultiGraph-specific options are defined in this parent object. For most parameters a default value exists such that mostly only the main configurations, i.e. aggregation.type, serialization.format, and layerType, should be consciously chosen according to requirements. The underlying process for the MultiGraph calculation is the following:
|
Array of objects (TargetCore) | |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": 100,
- "multigraph": {
- "layer": {
- "type": "HEXAGON",
- "edgeAggregationType": "min",
- "geometryDetailLevel": 16
}, - "serialization": {
- "format": "geojson"
}, - "aggregation": {
- "type": "routing_union"
}
}, - "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}, - {
- "id": "2",
- "lat": 52.451,
- "lng": 13.437,
- "tm": {
- "car": { }
}
}
]
}
This API returns a MultiGraph representing a specified aggregation based on travel times or distances from the sources. You can answer questions like:
The resulting graph contains spatial information equivalent to the underlying map, i.e. roads, crossings, etc. Other heatmap types are possible, e.g. displaying the result in tiles.
Possible formats are GeoJSON, mvt and json.
It can be seen as a different visualization of the Isochrone API which allows for more customization with regards to the source aggregation/intersection as well as the serialization formats.
The MultiGraphRequestConfiguration is URL encoded a query parameter.
Response type is dependent on the chosen serialization type:
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"sources\":[\n {\n \"lat\":52.51042282571668,\n \"lng\":13.38984489440918,\n \"id\":\"U Stadtmitte Berlin\",\n \"tm\":{\"bike\":{}}\n },\n {\n \"lat\":52.50956088985956,\n \"lng\":13.377184867858887,\n \"id\":\"S Potsdamer Platz\",\n \"tm\":{\"bike\":{}}\n }\n ],\n \"edgeWeight\":\"time\",\n \"maxEdgeWeight\":\"100\",\n \"multigraph\":{\n \"aggregation\":{\"type\":\"min\"},\n \"serialization\":{\"format\":\"geojson\"}}\n }\n}" JSON Configuration as query parameter
|
The MultiGraph request but with the tile and serialization (mvt) already specified as a path parameter (the tile and serialization format in the request body are overwritten).
This interface allows an easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/octet-stream".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
required | object (MultiGraph) MultiGraph-specific options are defined in this parent object. For most parameters a default value exists such that mostly only the main configurations, i.e. aggregation.type, serialization.format, and layerType, should be consciously chosen according to requirements. The underlying process for the MultiGraph calculation is the following:
|
Array of objects (TargetCore) | |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": 100,
- "multigraph": {
- "layer": {
- "type": "HEXAGON",
- "edgeAggregationType": "min",
- "geometryDetailLevel": 16
}, - "serialization": {
- "format": "geojson"
}, - "aggregation": {
- "type": "routing_union"
}
}, - "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}, - {
- "id": "2",
- "lat": 52.451,
- "lng": 13.437,
- "tm": {
- "car": { }
}
}
]
}
The MultiGraph request but with the tile and serialization (mvt) already specified as a path parameter (the tile and serialization format in the request body are overwritten).
This interface allows an easy integration into MapboxGL. For the tile format (google) see here.
The MultiGraphRequestConfiguration is URL encoded a query parameter.
Response type is "application/octet-stream".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"sources\":[\n {\n \"lat\":52.450411,\n \"lng\":13.4375,\n \"id\":\"1\",\n \"tm\":{\"car\":{}}\n },\n {\n \"lat\":52.451,\n \"lng\":13.437,\n \"id\":\"2\",\n \"tm\":{\"car\":{}}\n }\n ],\n \"edgeWeight\":\"time\",\n \"maxEdgeWeight\":\"100\",\n \"multigraph\":{\n \"aggregation\":{\"type\":\"routing_union\"}}\n }" JSON Configuration as query parameter
|
The MultiGraph request but with the tile and serialization (GeoJSON) already specified as a path parameter (the tile and serialization format in the request body are overwritten).
For the tile format (google) see here.
Response type is "application/json".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
required | object (MultiGraph) MultiGraph-specific options are defined in this parent object. For most parameters a default value exists such that mostly only the main configurations, i.e. aggregation.type, serialization.format, and layerType, should be consciously chosen according to requirements. The underlying process for the MultiGraph calculation is the following:
|
Array of objects (TargetCore) | |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": 100,
- "multigraph": {
- "layer": {
- "type": "HEXAGON",
- "edgeAggregationType": "min",
- "geometryDetailLevel": 16
}, - "serialization": {
- "format": "geojson"
}, - "aggregation": {
- "type": "routing_union"
}
}, - "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}, - {
- "id": "2",
- "lat": 52.451,
- "lng": 13.437,
- "tm": {
- "car": { }
}
}
]
}
The MultiGraph request but with the tile and serialization (GeoJSON) already specified as a path parameter (the tile and serialization format in the request body are overwritten).
For the tile format (google) see here.
The MultiGraphRequestConfiguration is URL encoded a query parameter.
Response type is "application/json".
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"sources\":[\n {\n \"lat\":52.450411,\n \"lng\":13.4375,\n \"id\":\"1\",\n \"tm\":{\"car\":{}}\n },{\n \"lat\":52.451,\n \"lng\":13.437,\n \"id\":\"2\",\n \"tm\":{\"car\":{}}\n }\n ],\n \"edgeWeight\":\"time\",\n \"maxEdgeWeight\":\"100\",\n \"multigraph\":{\n \"aggregation\":{\"type\":\"routing_union\"}}\n }" JSON Configuration as query parameter
|
This method returns overview information for a MultiGraph request:
This is of interest for (tiled) geometry requests (mvt,geojson). Response type is "application/json".
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
required | object (MultiGraph) MultiGraph-specific options are defined in this parent object. For most parameters a default value exists such that mostly only the main configurations, i.e. aggregation.type, serialization.format, and layerType, should be consciously chosen according to requirements. The underlying process for the MultiGraph calculation is the following:
|
Array of objects (TargetCore) | |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": 100,
- "multigraph": {
- "layer": {
- "type": "HEXAGON",
- "edgeAggregationType": "min",
- "geometryDetailLevel": 16
}, - "serialization": {
- "format": "geojson"
}, - "aggregation": {
- "type": "routing_union"
}
}, - "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}, - {
- "id": "2",
- "lat": 52.451,
- "lng": 13.437,
- "tm": {
- "car": { }
}
}
]
}
{- "data": {
- "valueBreaks": [
- 2,
- 551,
- 727,
- 864,
- 983,
- 1085,
- 1183,
- 1271,
- 1352,
- 1430,
- 1499
], - "minValue": 2,
- "maxValue": 1499,
- "southWest": {
- "x": 13.365815099999997,
- "y": 52.506546,
- "z": "NaN"
}, - "northEast": {
- "x": 13.469299299999998,
- "y": 52.575667700000004,
- "z": "NaN"
}
}, - "code": "ok",
- "message": "",
- "requestTime": "109"
}
This method returns overview information for a MultiGraph request:
This is of interest for (tiled) geometry requests (mvt,geojson). Response type is "application/json".
The MultiGraphRequestConfiguration is URL encoded a query parameter.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"sources\":[\n {\n \"lat\":52.450411,\n \"lng\":13.4375,\n \"id\":\"1\",\n \"tm\":{\"car\":{}}\n },\n {\n \"lat\":52.451,\n \"lng\":13.437,\n \"id\":\"2\",\n \"tm\":{\"car\":{}}\n }\n ],\n \"edgeWeight\":\"time\",\n \"maxEdgeWeight\":\"100\",\n \"multigraph\":{\n \"aggregation\":{\"type\":\"routing_union\"}\n }\n}" JSON Configuration as query parameter
|
{- "data": {
- "valueBreaks": [
- 2,
- 551,
- 727,
- 864,
- 983,
- 1085,
- 1183,
- 1271,
- 1352,
- 1430,
- 1499
], - "minValue": 2,
- "maxValue": 1499,
- "southWest": {
- "x": 13.365815099999997,
- "y": 52.506546,
- "z": "NaN"
}, - "northEast": {
- "x": 13.469299299999998,
- "y": 52.575667700000004,
- "z": "NaN"
}
}, - "code": "ok",
- "message": "",
- "requestTime": "109"
}
When using HTTP GET requests, we are limited by the header length. That length is server and client dependant, (i.e.,
every HTTP server and client implementation has it's own limits and some allow it to be changed). By convention, the
recommendation is a maximum 2000 char GET request, as it is the limit for some web browser implementations.
To permit using Targomo API GET requests with long content inputs, there is the objectcache tool to store the Request
Configuration beforehand as a POST request. As response you get an unique id to be used on further GET requests that links
the stored request parameters with the request being made.
Object Cache default parameters:
maxEntriesLocalHeap="100000",
timeToIdleSeconds="1800",
timeToLiveSeconds="3600"
This method allows storing on server a Request Configuration
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of objects (OsmType) |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
Array of objects (TargetCore) | |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
Array of objects (SourceCore) | |
Array of objects (SourceGeometry) | |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": 100,
- "multigraph": {
- "layer": {
- "type": "HEXAGON",
- "edgeAggregationType": "min",
- "geometryDetailLevel": 16
}, - "serialization": {
- "format": "geojson"
}, - "aggregation": {
- "type": "routing_union"
}
}, - "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}, - {
- "id": "2",
- "lat": 52.451,
- "lng": 13.437,
- "tm": {
- "car": { }
}
}
]
}
{- "id": 95,
- "created": 1539193545407,
- "modified": 1539193545407,
- "validFor": 3600,
- "clazz": "com.targomo.core.config.RequestConfiguration",
- "uuid": "b5050f2c-6a4b-4360-b08b-8b6451f7f733"
}
Analyse the reachability of Points of Interest (POIs) from lists of sources or within geometries and return the resulting visualizations as .mvt
or geojson
.
This service returns a list of reachable points of interest (POIs) for a given list of sources coordinates.
Necessary for this service:
required | Array of objects (Source) |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}
], - "elevation": true,
- "maxEdgeWeight": 200,
- "edgeWeight": "time",
- "osmTypes": [
- {
- "key": "amenity",
- "value": "bar"
}, - {
- "key": "group",
- "value": "g_shop"
}
], - "format": "geojson",
- "serviceKey": "__targomo_key_here__"
}
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Point",
- "coordinates": {
- "coordinates": [
- 13.4355052,
- 52.4689833
]
}
}, - "properties": {
- "type": "node",
- "id": "0_276762554",
- "bounded": true,
- "closestSource": "1",
- "tags": {
- "addr:city": "Berlin",
- "addr:coutry": "DE",
- "addr:housenumber": 122,
- "addr:postcode": 12051,
- "addr:street": "Emser Straße",
- "addr:suburb": "Neukölln",
- "amenity": "bar",
- "name": "Schloss Neuschweinsteiger",
- "opening_hours": "19:00-03:00",
- "wheelchair": "yes"
}, - "osmType": "amenity=bar",
- "edgeWeight": 282,
- "groupIds": [
- "bar"
]
}
}
]
}
This service calculates a list of reachable points of interest (POIs) for a given list of source coordinates and returns a uuid
that can be used to request the same POIs as mvt tile.
Necessary for this service:
required | Array of objects (Source) |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}
], - "elevation": true,
- "maxEdgeWeight": 200,
- "edgeWeight": "time",
- "osmTypes": [
- {
- "key": "amenity",
- "value": "bar"
}, - {
- "key": "group",
- "value": "g_shop"
}
], - "format": "geojson",
- "serviceKey": "__targomo_key_here__"
}
230ef01e-7701-41d1-8340-aa9848f97620
This service returns an MVT of reachable points of interest (POIs) for a given uuid corresponding to an already registered reachability configuration (reachability/register
). The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/octet-stream".
Necessary for this service: uuid
+ apiKey
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an mvt tile of reachable points of interest (POIs) of an already registered reachability configuration. The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/json".
Necessary for this service: uuid
+ apiKey
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an MVT tile of reachable points of interest (POIs) for a given list of source coordinates. The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/octet-stream".
Necessary for this service: cfg
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
cfg required | string Example: cfg={
"sources": [
{
"id": "1",
"lat": 52.531156,
"lng": 13.422760,
"tm": {
"bike": {}
}
},
{
"lat":52.518388,
"lng":13.400917,
"id":"2",
"tm":{
"bike":{}
}
}
],
"elevation": true,
"maxEdgeWeight": 500,
"edgeWeight": "time",
"osmTypes": [
{
"key": "amenity",
"value": "bar"
},
{
"key": "group",
"value": "g_electro"
}
],
"format": "geojson",
"serviceUrl": "https://api.targomo.com/westcentraleurope/",
"serviceKey": "__targomo_key_here__",
"filterGeometry": {
"crs": 4326,
"type": "geojson",
"data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108,52.5140],[13.3951,52.5297],[13.4379,52.525],[13.4358,52.5089],[13.4108,52.5140]]]}"
}
} JSON Configuration as query parameter. Should follow ReachabilityRequestConfiguration format (See here) or GeometryRequestConfiguration format (See here). |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an mvt tile of reachable points of interest (POIs) for a given list of source coordinates. The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/json".
Necessary for this service: cfg
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
cfg required | string Example: cfg={
"sources": [
{
"id": "1",
"lat": 52.531156,
"lng": 13.422760,
"tm": {
"bike": {}
}
},
{
"lat":52.518388,
"lng":13.400917,
"id":"2",
"tm":{
"bike":{}
}
}
],
"elevation": true,
"maxEdgeWeight": 500,
"edgeWeight": "time",
"osmTypes": [
{
"key": "amenity",
"value": "bar"
},
{
"key": "group",
"value": "g_electro"
}
],
"format": "geojson",
"serviceUrl": "https://api.targomo.com/westcentraleurope/",
"serviceKey": "__targomo_key_here__",
"filterGeometry": {
"crs": 4326,
"type": "geojson",
"data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108,52.5140],[13.3951,52.5297],[13.4379,52.525],[13.4358,52.5089],[13.4108,52.5140]]]}"
}
} JSON Configuration as query parameter. Should follow ReachabilityRequestConfiguration format (See here) or GeometryRequestConfiguration format (See here). |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns a summary of the reachable points of interest (POIs) for a given list of sources coordinates.
Necessary for this service:
required | Array of objects (Source) |
edgeWeight required | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight required | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "sources": [
- {
- "id": "1",
- "lat": 52.450411,
- "lng": 13.43755,
- "tm": {
- "car": { }
}
}
], - "elevation": true,
- "maxEdgeWeight": 200,
- "edgeWeight": "time",
- "osmTypes": [
- {
- "key": "amenity",
- "value": "bar"
}, - {
- "key": "group",
- "value": "g_shop"
}
], - "format": "geojson",
- "serviceKey": "__targomo_key_here__"
}
{- "totalPoi": 17,
- "osmTypeCount": {
- "shop=books": 3,
- "amenity=restaurant": 1,
- "shop=supermarket": 13
}, - "groupIdCount": {
- "Book": 3,
- "Restaurant": 1,
- "Supermarket": 13
}, - "clusterIdCount": {
- "c_1": 1,
- "c_2": 16
}
}
This service returns a summary of the reachable points of interest (POIs) for an already registered reachability request.
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
{- "totalPoi": 17,
- "osmTypeCount": {
- "shop=books": 3,
- "amenity=restaurant": 1,
- "shop=supermarket": 13
}, - "groupIdCount": {
- "Book": 3,
- "Restaurant": 1,
- "Supermarket": 13
}, - "clusterIdCount": {
- "c_1": 1,
- "c_2": 16
}
}
This service returns a list of reachable points of interest (POIs) within a given geometry.
Necessary for this service:
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
required | object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "osmTypes": [
- {
- "key": "amenity",
- "value": "bar"
}, - {
- "key": "group",
- "value": "g_shop"
}
], - "format": "geojson",
- "filterGeometry": {
- "crs": 4326,
- "type": "geojson",
- "data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108, 52.514],[13.3951, 52.5247],[13.3879, 52.5125],[13.4058,52.5089],[13.4108, 52.514]]]}"
}
}
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Point",
- "coordinates": {
- "coordinates": [
- 13.4355052,
- 52.4689833
]
}
}, - "properties": {
- "type": "node",
- "id": "0_276762554",
- "bounded": true,
- "tags": {
- "addr:city": "Berlin",
- "addr:coutry": "DE",
- "addr:housenumber": 122,
- "addr:postcode": 12051,
- "addr:street": "Emser Straße",
- "addr:suburb": "Neukölln",
- "amenity": "bar",
- "name": "Schloss Neuschweinsteiger",
- "opening_hours": "19:00-03:00",
- "wheelchair": "yes"
}, - "osmType": "amenity=bar",
- "groupIds": [
- "bar"
]
}
}
]
}
This service calculates a list of reachable points of interest (POIs) within a given geometry and returns a uuid
that can be used to request the same POIs as mvt tile.
Necessary for this service:
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
required | object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "osmTypes": [
- {
- "key": "amenity",
- "value": "bar"
}, - {
- "key": "group",
- "value": "g_shop"
}
], - "format": "geojson",
- "filterGeometry": {
- "crs": 4326,
- "type": "geojson",
- "data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108, 52.514],[13.3951, 52.5247],[13.3879, 52.5125],[13.4058,52.5089],[13.4108, 52.514]]]}"
}
}
230ef01e-7701-41d1-8340-aa9848f97620
This service returns an MVT tile of points of interest (POIs) for a given uuid corresponding to an already registered geometry configuration (geometry/register
). The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/octet-stream".
Necessary for this service: uuid
+ apiKey
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an mvt tile of reachable points of interest (POIs) an already registered geometry configuration. The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/json".
Necessary for this service: uuid
+ apiKey
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an mvt tile of points of interest (POIs) within a given geometry. The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/octet-stream".
Necessary for this service: cfg
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
cfg required | string Example: cfg={
"sources": [
{
"id": "1",
"lat": 52.531156,
"lng": 13.422760,
"tm": {
"bike": {}
}
},
{
"lat":52.518388,
"lng":13.400917,
"id":"2",
"tm":{
"bike":{}
}
}
],
"elevation": true,
"maxEdgeWeight": 500,
"edgeWeight": "time",
"osmTypes": [
{
"key": "amenity",
"value": "bar"
},
{
"key": "group",
"value": "g_electro"
}
],
"format": "geojson",
"serviceUrl": "https://api.targomo.com/westcentraleurope/",
"serviceKey": "__targomo_key_here__",
"filterGeometry": {
"crs": 4326,
"type": "geojson",
"data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108,52.5140],[13.3951,52.5297],[13.4379,52.525],[13.4358,52.5089],[13.4108,52.5140]]]}"
}
} JSON Configuration as query parameter. Should follow ReachabilityRequestConfiguration format (See here) or GeometryRequestConfiguration format (See here). |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns an mvt tile of points of interest (POIs) within a given geometry. The POIs can be requested as nodes.
This interface allows easy integration into MapboxGL. For the tile format (google) see here.
Response type is "application/json".
Necessary for this service: cfg
zoom required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
cfg required | string Example: cfg={
"sources": [
{
"id": "1",
"lat": 52.531156,
"lng": 13.422760,
"tm": {
"bike": {}
}
},
{
"lat":52.518388,
"lng":13.400917,
"id":"2",
"tm":{
"bike":{}
}
}
],
"elevation": true,
"maxEdgeWeight": 500,
"edgeWeight": "time",
"osmTypes": [
{
"key": "amenity",
"value": "bar"
},
{
"key": "group",
"value": "g_electro"
}
],
"format": "geojson",
"serviceUrl": "https://api.targomo.com/westcentraleurope/",
"serviceKey": "__targomo_key_here__",
"filterGeometry": {
"crs": 4326,
"type": "geojson",
"data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108,52.5140],[13.3951,52.5297],[13.4379,52.525],[13.4358,52.5089],[13.4108,52.5140]]]}"
}
} JSON Configuration as query parameter. Should follow ReachabilityRequestConfiguration format (See here) or GeometryRequestConfiguration format (See here). |
loadAllTags | boolean Default: false Whether or not to retrieve all tags of the POIs. |
layerGeometryDetailPerTile | integer Example: layerGeometryDetailPerTile=7 Difference between the zoom level of the map and the one used to build the geometries. |
layerMinGeometryDetailLevel | integer Example: layerMinGeometryDetailLevel=7 Minimum zoom level used to build the geometries. |
layerMaxGeometryDetailLevel | integer Example: layerMaxGeometryDetailLevel=28 Maximum zoom level used to build the geometries. |
maxGeometryCount | integer Example: maxGeometryCount=100000 Maximum number of geometries in a tile. |
This service returns a summary of the points of interest (POIs) within a given geometry.
Necessary for this service:
serviceKey required | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl required | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
required | Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to request. |
Array of OsmType (object) or PoiGroup (object) List of osm types or POI groups to exclude from the response. | |
match | string (MatchType) Enum: "any" "all" Type of match for the combination of tags. |
format | string (POIFormat) Default: "json" Enum: "json" "geojson" This optional parameter is currently only used for the Places Context APIs. Possible values are json, where results will be returned in a single JSON object with the OSM Ids as keys and the properties as values, or GeoJSON. |
required | object (Filter Geometry) Geometry with a closed shape. All the POIs returned in the response will be contained in this filter geometry (also known as clip geometry). This geometry can be used for both |
{- "osmTypes": [
- {
- "key": "amenity",
- "value": "bar"
}, - {
- "key": "group",
- "value": "g_shop"
}
], - "format": "geojson",
- "filterGeometry": {
- "crs": 4326,
- "type": "geojson",
- "data": "{\"type\":\"Polygon\",\"coordinates\":[[[13.4108, 52.514],[13.3951, 52.5247],[13.3879, 52.5125],[13.4058,52.5089],[13.4108, 52.514]]]}"
}
}
{- "totalPoi": 17,
- "osmTypeCount": {
- "shop=books": 3,
- "amenity=restaurant": 1,
- "shop=supermarket": 13
}, - "groupIdCount": {
- "Book": 3,
- "Restaurant": 1,
- "Supermarket": 13
}, - "clusterIdCount": {
- "c_1": 1,
- "c_2": 16
}
}
This service returns a summary of the reachable points of interest (POIs) for an already registered geometry request.
uuid required | string Example: c4cc1624-5baf-48d2-b284-d2d5718d80c9 Uuid of a registered request |
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
{- "totalPoi": 17,
- "osmTypeCount": {
- "shop=books": 3,
- "amenity=restaurant": 1,
- "shop=supermarket": 13
}, - "groupIdCount": {
- "Book": 3,
- "Restaurant": 1,
- "Supermarket": 13
}, - "clusterIdCount": {
- "c_1": 1,
- "c_2": 16
}
}
This request retrieves the info of a list of POIs from their Ids.
Nomenclature of the ids:
0_ means that the requested POI is a node.
1_ means that the requested POI is a way (a line or a polygon).
Theses prefixes are followed by the id of the object in the OSM database.
If the id is negative, it means that the node or the way derives from a relation.
Response type is "application/json".
poiIds required | Array of strings Example: 0_502545685,1_23971045,1_-2925020 List of POI Ids |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
This request returns a list of OSM keys that the service accepts in its requests.
Response type is "application/json".
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
[- "shop",
- "amenity",
- "historic"
]
This request returns all OSM tag values of the requested tagKey
that exist in the Places Layers and Places Context API database.
Response type is "application/json".
tagKey required | string Example: shop OSM key that is supported by the service. |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
text | string Example: text=b A suggested term to which the results will be similar. |
limit | integer Example: limit=20 Maximum number of results retrieved by the service. |
[- {
- "name": "supermarket",
- "count": 10953
}
]
This request returns the POI hierarchy supported by the service. The POI Hierarchy is a tree of POI groups that one can use to request groups of POI by their ids.
Response type is "application/json".
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
{- "id": "g_shop",
- "type": "CATEGORY",
- "name": "Shopping",
- "description": "Places where to shop",
- "contents": [
- {
- "id": "g_food",
- "name": "Food-beverages",
- "description": "Shops with food and beverages",
- "type": "CATEGORY",
- "contents": [
- {
- "id": "supermarket",
- "name": "Supermarket",
- "description": "A large store for groceries and other goods.",
- "type": "TAG",
- "key": "shop",
- "value": "supermarket"
}, - {
- "id": "convenience",
- "name": "Convenience",
- "description": "A convenience store.",
- "type": "TAG",
- "key": "shop",
- "value": "convenience"
}
]
}
]
}
Retrieve information on available statistics such as basic metadata and simple aggregations or perform statistics based reachability requests.
This method takes as input a list of sources, a statisticColllectionId and a list of statisticIds. With the points derived from the statistics data representing the "targets", the API calculates the reachability according to statistics considered.
For example, if the input statistic is total population, the API will calculate the population that would be reached for incremental travel times (e.g. population reachable within 5, 10 and 15 minutes).
This service is characterized by choosing for each statistic point the closest source to assign the statistic data, which makes the returned charts source dependent.
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statisticCollectionId | integer The Statistic Collection to be used as data source |
statisticIds | Array of integers List with statistic ids used for reachability calculation |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
travelType | string Enum: "walk" "bike" "car" "fly" The Mode of Transportation used by the Targomo API |
bikeSpeed | number <double> Default: 18 Assumed speed in km/h |
bikeUphill | number <double> Default: 20 Uphill penalty specifies by how much a distance is enhanced per one meter increase in elevation. E.g. an uphill penalty of 20 means that per one meter increase in elevation the distance is increased by 20 meters. |
bikeDownhill | number <double> Default: -10 Same like uphill but for downhill (might be negative because the distance can be closed quicker when downhill) |
walkSpeed | number <double> Default: 5 Assumed speed in km/h |
walkUphill | number <double> Default: 10 Uphill penalty specifies by how much a distance is enhanced per one meter increase in elevation. E.g. an uphill penalty of 20 means that per one meter increase in elevation the distance is increased by 20 meters. |
walkDownhill | number <double> Default: 0 Same like uphill but for downhill (might be negative because the distance can be closed quicker when downhill) |
rushHour | boolean Enable the rush hour mode to simulate a more crowded street. |
trafficJunctionPenalty | integer Default: 4 Penalty (in seconds) for routing over a junction. All penalties are halved when staying on the main road. |
trafficSignalPenalty | integer Default: 11 Penalty (in seconds) for routing over a signal. All penalties are halved when staying on the main road. |
trafficLeftTurnPenalty | integer Default: 7 Penalty (in seconds) for turning left. All penalties are halved when staying on the main road. |
trafficRightTurnPenalty | integer Default: 4 Penalty (in seconds) for turning right. All penalties are halved when staying on the main road. |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
elevationEnabled | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
allowPrivateAndServiceRoads | boolean Default: false If true, this will allow the core service to route on edges marked as private or on service roads (which are normally blocked for cars). |
arrivalOrDepartureDuration | integer Default: 0 If set to a value >0 the entering of the transit at the first stop (if reverse is false) will be limited to the time frame between time and time+arrivalOrDepartureDuration. If reverse is true, leaving of the transit at the last stop will be limited instead (between time and time-arrivalOrDepartureDuration). |
iFeelLucky | boolean Default: false |
getClosestSources | boolean Default: false |
omitIndividualStatistics | boolean Default: false if true, omits the individualStatistics response section |
serviceKey | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
Array of objects (sourceWithTravelType) | |
Array of objects (sourceGeometryWithTravelType) | |
Array of objects (targets) | |
Array of objects (sourceWithTravelType) | |
object (ClipGeometry) Define a geometry (Polygon/MultiPolygon) to clip the charts, multigraph and reachability responses. |
{- "statisticIds": [
- 0,
- 1
], - "serviceKey": "__targomo_key_here__",
- "statisticCollectionId": 100,
- "edgeWeight": "distance",
- "travelType": "car",
- "maxEdgeWeight": 100,
- "iFeelLucky": false,
- "getClosestSources": false,
- "omitIndividualStatistics": false,
- "sources": [
- {
- "id": "Point1",
- "y": 53.595765008920814,
- "x": 9.9920654296875,
- "travelType": "car"
}, - {
- "id": "Point2",
- "y": 53.75,
- "x": 9.75,
- "travelType": "car"
}
]
}
{- "statistics": {
- "0": {
- "100": 85,
- "200": 72
}, - "1": {
- "100": 13,
- "200": 6
}
}, - "reachableTargets": {
- "100": 8,
- "200": 6
}, - "closestSourceIds": { },
- "individualStatistics": {
- "Point1": {
- "statistics": {
- "0": {
- "100": 40,
- "200": 72
}, - "1": {
- "100": 4,
- "200": 6
}
}, - "reachableTargets": {
- "100": 2,
- "200": 6
}, - "closestSourceIds": { },
- "individualStatistics": { },
- "targetTravelTimes": { }
}, - "Point2": {
- "statistics": {
- "0": {
- "100": 45,
- "200": 0
}, - "1": {
- "100": 9,
- "200": 0
}
}, - "reachableTargets": {
- "100": 6,
- "200": 0
}, - "closestSourceIds": { },
- "individualStatistics": { },
- "targetTravelTimes": { }
}, - "statisticsSize": 2,
- "statistcsFloatArraySize": 2,
- "statsKeysSize": 2
}
}
This method takes as input a list of sources, a statisticColllectionId and a list of statisticIds. With the points derived from the statistics data representing the "targets", the API calculates the reachability according to statistics considered.
For example, if the input statistic is total population, the API will calculate the population that would be reached for incremental travel times (e.g. population reachable within 5, 10 and 15 minutes).
Unlike the charts/dependent service, this services calculates statistics independently for each source. Thus, if a statistic coordinate is reachable by two or more source points, it will be accounted for both.
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statisticCollectionId | integer The Statistic Collection to be used as data source |
statisticIds | Array of integers List with statistic ids used for reachability calculation |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
travelType | string Enum: "walk" "bike" "car" "fly" The Mode of Transportation used by the Targomo API |
bikeSpeed | number <double> Default: 18 Assumed speed in km/h |
bikeUphill | number <double> Default: 20 Uphill penalty specifies by how much a distance is enhanced per one meter increase in elevation. E.g. an uphill penalty of 20 means that per one meter increase in elevation the distance is increased by 20 meters. |
bikeDownhill | number <double> Default: -10 Same like uphill but for downhill (might be negative because the distance can be closed quicker when downhill) |
walkSpeed | number <double> Default: 5 Assumed speed in km/h |
walkUphill | number <double> Default: 10 Uphill penalty specifies by how much a distance is enhanced per one meter increase in elevation. E.g. an uphill penalty of 20 means that per one meter increase in elevation the distance is increased by 20 meters. |
walkDownhill | number <double> Default: 0 Same like uphill but for downhill (might be negative because the distance can be closed quicker when downhill) |
rushHour | boolean Enable the rush hour mode to simulate a more crowded street. |
trafficJunctionPenalty | integer Default: 4 Penalty (in seconds) for routing over a junction. All penalties are halved when staying on the main road. |
trafficSignalPenalty | integer Default: 11 Penalty (in seconds) for routing over a signal. All penalties are halved when staying on the main road. |
trafficLeftTurnPenalty | integer Default: 7 Penalty (in seconds) for turning left. All penalties are halved when staying on the main road. |
trafficRightTurnPenalty | integer Default: 4 Penalty (in seconds) for turning right. All penalties are halved when staying on the main road. |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
elevationEnabled | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
allowPrivateAndServiceRoads | boolean Default: false If true, this will allow the core service to route on edges marked as private or on service roads (which are normally blocked for cars). |
arrivalOrDepartureDuration | integer Default: 0 If set to a value >0 the entering of the transit at the first stop (if reverse is false) will be limited to the time frame between time and time+arrivalOrDepartureDuration. If reverse is true, leaving of the transit at the last stop will be limited instead (between time and time-arrivalOrDepartureDuration). |
iFeelLucky | boolean Default: false |
getClosestSources | boolean Default: false |
omitIndividualStatistics | boolean Default: false if true, omits the individualStatistics response section |
serviceKey | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
Array of objects (sourceWithTravelType) | |
Array of objects (sourceGeometryWithTravelType) | |
Array of objects (targets) | |
Array of objects (sourceWithTravelType) | |
object (ClipGeometry) Define a geometry (Polygon/MultiPolygon) to clip the charts, multigraph and reachability responses. |
{- "statisticIds": [
- 0,
- 1
], - "serviceKey": "__targomo_key_here__",
- "statisticCollectionId": 100,
- "edgeWeight": "distance",
- "travelType": "car",
- "maxEdgeWeight": 100,
- "iFeelLucky": false,
- "getClosestSources": false,
- "omitIndividualStatistics": false,
- "sources": [
- {
- "id": "Point1",
- "y": 53.595765008920814,
- "x": 9.9920654296875,
- "travelType": "car"
}, - {
- "id": "Point2",
- "y": 53.75,
- "x": 9.75,
- "travelType": "car"
}
]
}
{- "statistics": {
- "0": {
- "100": 85,
- "200": 72
}, - "1": {
- "100": 13,
- "200": 6
}
}, - "reachableTargets": {
- "100": 8,
- "200": 6
}, - "closestSourceIds": { },
- "individualStatistics": {
- "Point1": {
- "statistics": {
- "0": {
- "100": 40,
- "200": 72
}, - "1": {
- "100": 4,
- "200": 6
}
}, - "reachableTargets": {
- "100": 2,
- "200": 6
}, - "closestSourceIds": { },
- "individualStatistics": { },
- "targetTravelTimes": { }
}, - "Point2": {
- "statistics": {
- "0": {
- "100": 45,
- "200": 0
}, - "1": {
- "100": 9,
- "200": 0
}
}, - "reachableTargets": {
- "100": 6,
- "200": 0
}, - "closestSourceIds": { },
- "individualStatistics": { },
- "targetTravelTimes": { }
}, - "statisticsSize": 2,
- "statistcsFloatArraySize": 2,
- "statsKeysSize": 2
}
}
This service retrieves a list of statistic data aggregated by one of the following functions:
As result, this service calculates the response using the given aggregation function from all statistic points inside the given geometry. If no aggregation function is given, the sum function is used as default.
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
aggregations | Array of strings If provided, this parameter must contain one aggregation per StatisticId
The parameter value should be formatted as:
Example: For a request with two statisticIds (0 and 1) using min and max aggregations respectively
|
statisticIds | Array of integers |
statisticCollectionId | integer |
serviceKey | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl | any defines the core api server address to be used |
object |
{- "statisticCollectionId": 100,
- "serviceKey": "__targomo_key_here__",
- "statisticIds": [
- 0,
- 1
], - "intersectionGeometry": {
- "data": "{\"type\":\"Polygon\",\"coordinates\":[[[9.9920654296875,53.595765008920814],[10.08544921875,53.595765008920814],[10.08544921875,53.65114992539624],[9.9920654296875,53.65114992539624],[9.9920654296875,53.595765008920814]]]}",
- "crs": 4326
}
}
{- "0-SUM": {
- "aggregation": "SUM",
- "value": 137866,
- "statisticId": 0
}, - "1-SUM": {
- "aggregation": "SUM",
- "value": 11345,
- "statisticId": 1
}
}
This service calculates travel times between sources and statistic cells via statistic group with the highest resolution by given collection id.
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statisticCollectionId | integer The Statistic Collection to be used as data source |
statisticIds | Array of integers List with statistic ids used for reachability calculation |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
travelType | string Enum: "walk" "bike" "car" "fly" The Mode of Transportation used by the Targomo API |
useCache | boolean Default: true Flag to set if results must be cached for future requests |
iFeelLucky | boolean Default: false |
getClosestSources | boolean Default: false |
omitIndividualStatistics | boolean Default: false if true, omits the individualStatistics response section |
serviceKey | string This is the Targomo APi key (serviceKey) that you receive once you are registered at targomo.com/developers. |
serviceUrl | string This is the service URL to which the other dependant Targomo requests are dispatched (e.g Targomo Time or Routing requestrs). The endpoint has to correspond to the addresses, e.g. if you want to execute Vehicle Routing in France you need to point to an Targomo Endpoint that includes France geographically. |
Array of objects (source) | |
Array of objects (sourceGeometry) | |
Array of objects (source) |
{- "statisticIds": [
- 0,
- 1
], - "serviceKey": "__targomo_key_here__",
- "statisticCollectionId": 100,
- "edgeWeight": "distance",
- "travelType": "car",
- "maxEdgeWeight": 200,
- "useCache": false,
- "iFeelLucky": false,
- "getClosestSources": false,
- "omitIndividualStatistics": false,
- "sources": [
- {
- "id": "Point1",
- "y": 53.595765008920814,
- "x": 9.9920654296875,
- "travelType": "car"
}, - {
- "id": "Point2",
- "y": 53.75,
- "x": 9.75,
- "travelType": "car"
}
]
}
{- "416499": 120
}
This service lists all the Statistics Groups registered on Statistics Server and attributes provided by each group.
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
[- {
- "id": 100,
- "maxStatisticId": 3206539,
- "names": {
- "en": "German census 2011 (100mx100m): Demographics, families, households, buildings, apartments."
}, - "descriptions": {
- "en": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 100mx100m tiles."
}, - "version": "0.2",
- "license": "Public Use",
- "attribution": "© Statistische Ämter des Bundes und der Länder",
- "created": 1587340800000,
- "modified": 1587340800000,
- "srid": 4326,
- "type": "GRID",
- "ensemble": {
- "id": 100,
- "names": {
- "en": "Germany: Destatis 2018"
}, - "region": "Germany",
- "countries": [
- "DEU"
], - "version": "0.2",
- "source": "Census data: https://www.zensus2011.de/DE/Home/Aktuelles/DemografischeGrunddaten.html",
- "license": "Public Use",
- "attribution": "© Statistische Ämter des Bundes und der Länder",
- "vectortilesEnabled": true,
- "active": true,
- "privacyLevel": "PUBLIC",
- "name": "Germany: Destatis 2018"
}, - "vectortilesEnabled": true,
- "active": true,
- "privacyLevel": "PUBLIC",
- "minZoom": 10,
- "minZoomRecommendation": 10,
- "hierarchy": 0,
- "numberOfPoints": 3206540,
- "avgGeomSize": 432,
- "boundingBox": {
- "southWest": {
- "x": 5.866757468814165,
- "y": 47.292364991074706,
- "z": 0
}, - "northEast": {
- "x": 15.032785714920012,
- "y": 55.05281628905337,
- "z": 0
}, - "boundingBoxString": "ST_Transform(ST_SetSRID(ST_MakeBox2D(ST_Point(5.866757468814165, 47.292364991074706), ST_Point(15.032785714920012, 55.05281628905337)), 4326), 3857)"
}, - "statistics": {
- "0": {
- "id": 0,
- "names": {
- "de": "Gesamtbevölkerung",
- "en": "Total population"
}, - "descriptions": {
- "en": "Population: Total Population"
}, - "topicId": 1,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 1969,
- "avg": 25.050141897497276,
- "sum": 80324282,
- "standardDeviation": 34.265188737799384,
- "virtualStatistic": false
}, - "1": {
- "id": 1,
- "names": {
- "de": "0 - 10 Jahre",
- "en": "0 - 10 years"
}, - "descriptions": {
- "en": "Population: Age 0 - 10"
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 208,
- "avg": 2.104101617319609,
- "sum": 6746886,
- "standardDeviation": 3.9879526203543336,
- "virtualStatistic": false
}, - "2": {
- "id": 2,
- "names": {
- "de": "10 - 19 Jahre",
- "en": "10 - 19 years"
}, - "descriptions": {
- "en": "Population: Age 10 - 19"
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 386,
- "avg": 2.442532449306686,
- "sum": 7832078,
- "standardDeviation": 4.022622844032793,
- "virtualStatistic": false
}, - "3": {
- "id": 3,
- "names": {
- "de": "20 - 29 Jahre",
- "en": "20 - 29 years"
}, - "descriptions": {
- "en": "Population: Age 20 - 29 "
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 818,
- "avg": 2.958827895488506,
- "sum": 9487600,
- "standardDeviation": 7.02647389554587,
- "virtualStatistic": false
}
}, - "virtualStatistics": {
- "10000": {
- "id": 10000,
- "referenceIds": [
- 1,
- 0
], - "names": {
- "en": "% 0-10 years old"
}, - "descriptions": {
- "en": "0-10 years old as a percentage of the total population"
}, - "topicId": 2,
- "ignoreValues": [ ],
- "type": null,
- "aggregationType": "DIVISION",
- "min": 0,
- "max": 1,
- "avg": 0.06827956792610514,
- "sum": 218941.16573777318,
- "standardDeviation": 0.11851787435038419,
- "virtualStatistic": true
}, - "10001": {
- "id": 10001,
- "referenceIds": [
- 2,
- 0
], - "names": {
- "en": "% 10-19 years old"
}, - "descriptions": {
- "en": "10-19 years old as a percentage of the total population"
}, - "topicId": 2,
- "ignoreValues": [ ],
- "type": null,
- "aggregationType": "DIVISION",
- "min": 0,
- "max": 1,
- "avg": 0.08692956204041442,
- "sum": 278743.11786507047,
- "standardDeviation": 0.13389734569377976,
- "virtualStatistic": true
}, - "10002": {
- "id": 10002,
- "referenceIds": [
- 3,
- 0
], - "names": {
- "en": "% 20-29 years old"
}, - "descriptions": {
- "en": "20-29 years old as a percentage of the total population"
}, - "topicId": 2,
- "ignoreValues": [ ],
- "type": null,
- "aggregationType": "DIVISION",
- "min": 0,
- "max": 1,
- "avg": 0.0846197406905191,
- "sum": 271336.5833137771,
- "standardDeviation": 0.13362111394793516,
- "virtualStatistic": true
}
}, - "ignoreValues": {
- "noEntryKey": 0,
- "empty": true,
- "noEntryValue": 0,
- "autoCompactionFactor": 0.5
}, - "breakpoints": [
- {
- "created": 1659429234019,
- "clusterSize": 5,
- "groupId": 100,
- "statisticId": 0,
- "clusteringMethod": "KMEANS",
- "breakValues": [
- 0,
- 36.164495581009234,
- 120.07556792170223,
- 1969
], - "minValueUsed": 0,
- "maxValueUsed": 1969,
- "valuesUsed": 3206540,
- "distinctValuesUsed": 620
}, - {
- "created": 1659429234019,
- "clusterSize": 9,
- "groupId": 100,
- "statisticId": 2,
- "clusteringMethod": "QUANTILE",
- "breakValues": [
- 0,
- 3,
- 5,
- 386
], - "minValueUsed": 0,
- "maxValueUsed": 386,
- "valuesUsed": 3206540,
- "distinctValuesUsed": 138
}, - {
- "created": 1659429234019,
- "clusterSize": 5,
- "groupId": 100,
- "statisticId": 3,
- "clusteringMethod": "KMEANS",
- "breakValues": [
- 0,
- 10.148900522113026,
- 44.05234315921471,
- 818
], - "minValueUsed": 0,
- "maxValueUsed": 818,
- "valuesUsed": 3206540,
- "distinctValuesUsed": 317
}
]
}
]
Retrieves the Statistic Group list of statistics
A Statistic Group may have a list with one or more statistics (e.g. male and female population, distribution by age and so forth). This method lists the statistics available for a specific Statistic Group.
Each group has it's own statistics set, defined by the institution that obtained and organized the data.
groupId required | integer The Group Id to be registered |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
[- {
- "id": 0,
- "names": {
- "de": "Gesamtbevölkerung",
- "en": "Total population"
}, - "descriptions": {
- "en": "Population: Total Population"
}, - "topicId": 1,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 1969,
- "avg": 25.050141897497276,
- "sum": 80324282,
- "standardDeviation": 34.265188737799384,
- "virtualStatistic": false
}, - {
- "id": 1,
- "names": {
- "de": "0 - 10 Jahre",
- "en": "0 - 10 years"
}, - "descriptions": {
- "en": "Population: Age 0 - 10"
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 208,
- "avg": 2.104101617319609,
- "sum": 6746886,
- "standardDeviation": 3.9879526203543336,
- "virtualStatistic": false
}, - {
- "id": 2,
- "names": {
- "de": "10 - 19 Jahre",
- "en": "10 - 19 years"
}, - "descriptions": {
- "en": "Population: Age 10 - 19"
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 386,
- "avg": 2.442532449306686,
- "sum": 7832078,
- "standardDeviation": 4.022622844032793,
- "virtualStatistic": false
}, - {
- "id": 3,
- "names": {
- "de": "20 - 29 Jahre",
- "en": "20 - 29 years"
}, - "descriptions": {
- "en": "Population: Age 20 - 29 "
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 818,
- "avg": 2.958827895488506,
- "sum": 9487600,
- "standardDeviation": 7.02647389554587,
- "virtualStatistic": false
}, - {
- "id": 4,
- "names": {
- "de": "30 - 39 Jahre",
- "en": "30 - 39 years"
}, - "descriptions": {
- "en": "Population: Age 30 - 39 "
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 741,
- "avg": 2.9140391200484217,
- "sum": 9343983,
- "standardDeviation": 5.793214926935025,
- "virtualStatistic": false
}, - {
- "id": 5,
- "names": {
- "de": "40 - 49 Jahre",
- "en": "40 - 49 years"
}, - "descriptions": {
- "en": "Population: Age 40 - 49"
}, - "topicId": 2,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 616,
- "avg": 4.150689216413844,
- "sum": 13309351,
- "standardDeviation": 5.897509719264872,
- "virtualStatistic": false
}
]
A Statistic Group may have a list with one or more statistics (e.g. male and female population, distribution by age and so forth). This method retrieves the properties of a specific statistic from the Statistic Group.
Each group has it's own statistics set, defined by the institution that obtained and organized the data.
groupId required | integer The Group Id to be registered |
statistics required | integer the statistic id from statistic group |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
[- {
- "id": 0,
- "names": {
- "de": "Gesamtbevölkerung",
- "en": "Total population"
}, - "descriptions": {
- "en": "Population: Total Population"
}, - "topicId": 1,
- "type": "ABSOLUTE",
- "min": 0,
- "max": 1969,
- "avg": 25.050141897497276,
- "sum": 80324282,
- "standardDeviation": 34.265188737799384,
- "virtualStatistic": false
}
]
A Statistic Group may have one or more sets of statistics data. For each statistic, there must be a list of points or geometries geographically distributed with the values of that enclosing area. The purpose of this method is retrieve the all statistics data of a given Statistics Group for a coordinate.
The query parameter is not the geographic coordinate, but it's id on database. So, to use that service is necessary to know the desired id in values_of_statistic_group table.
groupId required | integer The Group Id to be registered |
id required | integer the statistics data id ( values_of_statistic_group table id) |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
serviceUrl | string Example: serviceUrl=https://api.targomo.com/westcentraleurope defines the core api server address to be used |
{- "id": "143978",
- "x": 14.2004447208689,
- "y": 52.7824316270722,
- "values": {
- "empty": true,
- "noEntryKey": 0,
- "noEntryValue": 0,
- "autoCompactionFactor": 0.5
}, - "statisticValues": {
- "0": 3,
- "1": 43.13,
- "2": 216.0109,
- "3": 18.41,
- "4": 39.630108,
- "5": 270.3918,
- "6": 0.7
}
}
Returns a list of statistic groups with base metadata from Database.
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
locale | string Default: "en" Example: locale=de The two letter language code for the name and description language. |
[- {
- "id": 100,
- "created": "2020-04-20 00:00:00",
- "license": "Public Use",
- "attribution": "© Statistische Ämter des Bundes und der Länder",
- "modified": "2020-04-20 00:00:00",
- "srid": 4326,
- "type": "GRID",
- "version": "0.2",
- "boundingBox": {
- "top_right": {
- "lat": "55.0528162890534",
- "lng": "15.03278571492"
}, - "bottom_left": {
- "lat": "47.2923649910747",
- "lng": "5.86675746881417"
}
}, - "names": {
- "en": "German census 2011 (100mx100m): Demographics, families, households, buildings, apartments."
}, - "descriptions": {
- "en": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 100mx100m tiles."
}, - "source": "deprecated",
- "collectionId": 100,
- "name": "German census 2011 (100mx100m): Demographics, families, households, buildings, apartments.",
- "description": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 100mx100m tiles.",
- "numberofpoints": 116442,
- "min_zoom": 10,
- "privacy_level": "public"
}, - {
- "id": 101,
- "created": "2020-04-20 00:00:00",
- "license": "Public Use",
- "attribution": "© Statistische Ämter des Bundes und der Länder",
- "modified": "2020-04-20 00:00:00",
- "srid": 4326,
- "type": "GRID",
- "version": "0.2",
- "boundingBox": {
- "top_right": {
- "lat": "55.0532555174011",
- "lng": "15.0335500329306"
}, - "bottom_left": {
- "lat": "47.291916097494",
- "lng": "5.86600527295287"
}
}, - "names": {
- "en": "German census 2011 (200mx200m): Demographics, families, households, buildings, apartments."
}, - "descriptions": {
- "en": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 200mx200m tiles."
}, - "source": "deprecated",
- "collectionId": 100,
- "name": "German census 2011 (200mx200m): Demographics, families, households, buildings, apartments.",
- "description": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 200mx200m tiles.",
- "numberofpoints": 45591,
- "min_zoom": 9,
- "privacy_level": "public"
}
]
Returns an object with detailed metadata for a specific statistic group.
group required | integer Example: 100 statistic group for layer |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
fields | integer Example: fields=stats Specific fields as comma separated string to request |
statsFields | integer Example: statsFields=sum,topic Specific statistic fields as comma separated string to request |
{- "id": 100,
- "created": "2020-04-20T00:00:00.000Z",
- "license": "Public Use",
- "attribution": "© Statistische Ämter des Bundes und der Länder",
- "modified": "2020-04-20T00:00:00.000Z",
- "numberofpoints": 3206540,
- "srid": 4326,
- "type": "GRID,",
- "version": 0.2,
- "min_zoom": 10,
- "privacy_level": "public",
- "bounding_box": {
- "top_right": {
- "lng": 15.0335500318,
- "lat": 55.0532554835
}, - "bottom_left": {
- "lng": 5.86600527388,
- "lat": 47.3151688293
}
}, - "names": {
- "en": "Germany Census 200m x 200m"
}, - "descriptions": {
- "en": "This dataset contains population statistics by age for Germany, based on 200x200 m^2 tiles."
}, - "ignorevalues": [
- {
- "ignore_value": -1,
- "reason": "-1.0 means no data"
}, - {
- "ignore_value": -9,
- "reason": "-9.0 means restricted data"
}
], - "topics": [
- {
- "subject_id": 1,
- "virtual_statistic_ids": [
- "10009",
- "10010"
], - "names": {
- "de": "Bevölkerung",
- "en": "Population"
}, - "subject_names": {
- "en": "Demographics"
}, - "icon": "accessibility",
- "id": 1,
- "statistic_ids": [
- "0",
- "28",
- "29"
], - "descriptions": {
- "en": "Number of populations by type and in total"
}
}, - {
- "subject_id": 1,
- "virtual_statistic_ids": [
- "10000",
- "10001",
- "10002",
- "10003",
- "10004"
], - "names": {
- "de": "Bevölkerung nach Altersklassen",
- "en": "Population by age"
}, - "subject_names": {
- "en": "Demographics"
}, - "icon": "accessibility",
- "id": 2,
- "statistic_ids": [
- "1",
- "2",
- "3",
- "4"
], - "descriptions": {
- "en": "Population grouped by age"
}
}, - {
- "subject_id": 5,
- "virtual_statistic_ids": [ ],
- "names": {
- "en": "Civil status"
}, - "subject_names": {
- "en": "Family and Household"
}, - "icon": "photo_size_select_small",
- "id": 43,
- "statistic_ids": [
- "15",
- "16",
- "17",
- "18",
- "19",
- "22"
], - "descriptions": {
- "en": "Number of persons according to their civil status"
}
}
], - "stats": [
- {
- "statistic_id": 0,
- "min": 3,
- "max": 1976,
- "avg": 57.6892644939064,
- "sum": 80324282,
- "std": 95.4976951145886,
- "type": "ABSOLUTE",
- "names": {
- "en": "population"
}, - "descriptions": {
- "de": "Bevölkerung (total)",
- "en": "total population"
}, - "breakpoints": {
- "equal_interval": {
- "c7": [
- 281,
- 562,
- 843,
- 1124,
- 1405,
- 1686,
- 1967
], - "c9": [
- 219,
- 438,
- 657,
- 876,
- 1095,
- 1314,
- 1533,
- 1752,
- 1971
], - "c5": [
- 394,
- 788,
- 1182,
- 1576,
- 1970
]
}, - "kmeans": {
- "c9": [
- 3,
- 28,
- 71,
- 125,
- 194,
- 287,
- 417,
- 597,
- 859,
- 1976
]
}
}
}, - {
- "statistic_id": 1,
- "min": 3,
- "max": 89,
- "avg": 43.5601295001484,
- "sum": 59348197.0631924,
- "std": 8.32728068570477,
- "type": "ABSOLUTE",
- "names": {
- "en": "avg_age"
}, - "descriptions": {
- "de": "Durchschnittsalter",
- "en": "average age"
}, - "breakpoints": {
- "equal_interval": {
- "c9": [
- 9,
- 18,
- 27,
- 36,
- 45,
- 54,
- 63,
- 72,
- 81
], - "c7": [
- 12,
- 24,
- 36,
- 48,
- 60,
- 72,
- 84
], - "c5": [
- 17,
- 34,
- 51,
- 68,
- 85
]
}, - "kmeans": {
- "c9": [
- 3,
- 28.84,
- 34.96,
- 38.78,
- 41.73,
- 44.44,
- 47.53,
- 52.1,
- 60,
- 89
]
}
}
}
], - "collectionId": 100,
- "topic": {
- "1": "Population",
- "5": "Apartments"
}, - "name": "German census 2011 (100mx100m): Demographics, families, households, buildings, apartments.",
- "description": "This dataset contains information about demograhpics, families, households, buildings, and apartments in Germany in 2011. The raster consists of 100mx100m tiles."
}
Returns Statistics Layers (mvt tiles) of the statistic group from Database.
group required | integer Example: 100 statistic group for layer |
z required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statistics | string Example: statistics=statistics=0&statistics=1&statistics=2 Statistics id list to return in the response. |
sumStatistics | boolean Default: false If true also return the sum of all given statistics values. The default is false. |
useDb | string Default: false If true, generate result from db, else use in memory data. If false, serviceUrl parameter must be used. The default is false. |
Returns Statistics Layers (GeoJSON) of the statistic group from Database.
group required | integer Example: 100 statistic group for layer |
z required | integer Example: 14 zoom level - must be >= 0 and < 32 |
x required | integer Example: 8803 must be >= 0 and < 2^zoom |
y required | integer Example: 5378 must be >= 0 and < 2^zoom |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
statistics | string Example: statistics=statistics=0&statistics=1&statistics=2 Statistics id list to return in the response. |
sumStatistics | boolean Default: false If true also return the sum of all given statistics values. The default is false. |
useDb | string Default: false If true, generate result from db, else use in memory data. If false, serviceUrl parameter must be used. The default is false. |
{- "data": {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 13.3656,
- 52.5907,
- 0
], - [
- 13.367,
- 52.6086,
- 0
], - [
- 13.3965,
- 52.6078,
- 0
], - [
- 13.3951,
- 52.5898,
- 0
], - [
- 13.3656,
- 52.5907,
- 0
]
]
]
}, - "properties": {
- "wGrav": 0.497545,
- "wStatsAgg": 3083.784,
- "wStats": 6198
}
}
]
}, - "code": "ok",
- "message": "",
- "requestTime": "79"
}
Analyse the quality of a given list of location according to different metrics.
It enables you to combine the features of many of Targomo's APIs into one single request!
You can define different criteria (POI reachability, statistics reachability, gravitational model requests) and can request those criteria for a list of locations. The Scoring API will calculate and combine all results into a single response.
This service returns the results/scores of a given list of criteria for a given list of locations.
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
showDetails | boolean Ask for the details about the geographical elements that were used to calculate a score (for example: closest POIs...) |
Necessary for this service:
required | Array of Point (object) or Geometry (object) (Location) List of locations |
required | object Criterion definitions For each criterion, a key must be set to be able to identify the different criteria in the response. |
Array of Point (object) or Geometry (object) (Location) List of locations that will be taken as competitors for all If this list is null or empty, the gravitational scores for each location is calculated with the other locations as competitors. |
{- "locations": [
- {
- "id": "Location 1",
- "lat": 52.450411,
- "lng": 13.43755
}, - {
- "id": "Location 2",
- "lat": 52.478598,
- "lng": 13.437995
}, - {
- "id": "Location 3",
- "lat": 52.481577,
- "lng": 13.434219
}, - {
- "id": "Geometry 1",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 13.39086721,
- 52.51040895
], - [
- 13.39058887,
- 52.51039267
], - [
- 13.39060989,
- 52.51027971
], - [
- 13.39086721,
- 52.51040895
]
]
]
}
}
], - "criteria": {
- "poi-shops": {
- "type": "poiCoverageCount",
- "osmTypes": [
- {
- "key": "group",
- "value": "g_shop"
}
], - "maxEdgeWeight": 300,
- "edgeWeight": "time",
- "travelMode": {
- "walk": { }
},
}, - "stats-population": {
- "type": "statisticsSum",
- "statisticCollectionId": 100,
- "statisticsIds": [
- 0
], - "maxEdgeWeight": 300,
- "edgeWeight": "time",
- "travelMode": {
- "walk": { }
},
}, - "stats-young-fraction": {
- "type": "statisticsSum",
- "statisticCollectionId": 100,
- "statisticsIds": [
- 7
], - "referenceStatisticsIds": [
- 0
], - "maxEdgeWeight": 300,
- "edgeWeight": "time",
- "travelMode": {
- "walk": { }
},
}
}
}
{- "data": {
- "Location 1": {
- "id": "Location 1",
- "lat": 52.516952,
- "lng": 13.40229,
- "scores": {
- "poi-shops": 67,
- "poi-shops-3000": null,
- "stats-population": 3584,
- "stats-young-fraction": 0.056640625
}, - "details": { }
}
}, - "message": "Scores calculated",
- "errors": [
- {
- "id": "403",
- "detail": "{\"status\":\"Forbidden\",\"timestamp\":\"03-03-2021 04:00:00\",\"message\":\"Max travel time (3000) too high, allowed: 1800.\"}",
- "meta": {
- "serviceName": "Poi Service",
- "criteriaIds": [
- "poi-shops-3000"
], - "locationId": "Location 1"
}
}
], - "timestamp": "03-03-2021 04:00:00"
}
This service returns the results/scores/ratings of a given rating for a given list of locations.
Only available on demand.
Rating Id required | string Example: rating1 Id of an existing rating definition. |
apiKey required | string Example: apiKey=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
showDetails | boolean Ask for the details about the geographical elements that were used to calculate a score (for example: closest POIs...) |
Necessary for this service:
required | Array of Point (object) or Geometry (object) (Location) List of locations |
criteriaGroups | object Weights of each single criteria in all criteria groups. The average rating of each criteria group will calculated according to those weights. |
criteriaGroupWeights | object Weights of each criteria group. The average global rating will calculated according to those weights. |
{- "locations": [
- {
- "id": "Location 1",
- "lat": 52.450411,
- "lng": 13.43755
}, - {
- "id": "Location 2",
- "lat": 52.478598,
- "lng": 13.437995
}, - {
- "id": "Location 3",
- "lat": 52.481577,
- "lng": 13.434219
}
], - "criteriaGroups": {
- "criteriaGroup1": {
- "poi-shops": 1,
- "stats-population": 0.5
}
}, - "criteriaGroupWeights": {
- "criteriaGroup1": 2.5
}
}
{- "data": {
- "Location 1": {
- "id": "Location 1",
- "lat": 52.516952,
- "lng": 13.40229,
- "scores": {
- "poi-shops": 67,
- "poi-shops-3000": null,
- "stats-population": 3584,
- "stats-young-fraction": 0.056640625
}, - "globalRatings": {
- "0": {
- "referenceAreaId": 0,
- "referenceAreaName": "Deutschland",
- "globalRating": 0.17476
}, - "1": {
- "referenceAreaId": 1,
- "referenceAreaName": "Berlin",
- "globalRating": 0.3935
}
}, - "ratings": {
- "criteriaGroup1": {
- "0": {
- "referenceAreaId": 0,
- "referenceAreaName": "Deutschland",
- "groupRating": 0.17476,
- "detailRatings": {
- "poi-shops": 0.7476,
- "stats-population": 0.2341
}
}, - "1": {
- "referenceAreaId": 1,
- "referenceAreaName": "Berlin",
- "groupRating": 0.3935,
- "detailRatings": {
- "poi-shops": 0.4935,
- "stats-population": 0.27321
}
}
}
}, - "details": { }
}
}, - "message": "Scores calculated",
- "errors": [
- {
- "id": "403",
- "detail": "{\"status\":\"Forbidden\",\"timestamp\":\"03-03-2021 04:00:00\",\"message\":\"Max travel time (3000) too high, allowed: 1800.\"}",
- "meta": {
- "serviceName": "Poi Service",
- "criteriaIds": [
- "poi-shops-3000"
], - "locationId": "Location 1"
}
}
], - "timestamp": "03-03-2021 04:00:00"
}
Constructs routes between lists of sources and targets. If multiple sources and targets are set a result will be returned for each unique source-target pair.
Calculates the routes between provided sources targets. This will result in one route per source/target pair (e.g. 2 sources and 3 targets returns 6 routes). If more than one source is provided in the request each one can have a separate travel type (tm tag on schema) specified.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
pathSerializer | Array of strings Items Enum: "compact" "geojson" |
Array of objects (Route Source) | |
required | Array of objects (TargetCore) |
edgeWeight | string Default: "time" Enum: "time" "distance" Determines the dimension of the edges' weight, i.e. time (distance in seconds) or distance (distance in meters). |
maxEdgeWeight | integer <int32> Default: 1800 The maximum distance "depth" of the built network in seconds (for edgeWeight = time) or meters (for edgeWeight = distance). lower max edge weights limit the size of the networked and the area covered, while greater values will increase the time taken to process the request. The upper limit of this variable is based on your subscription plan and differs between distance and time. |
elevation | boolean Default: true Whether or not the an elevation heuristic will be used (e.g. downhill with bike quicker than uphill). |
reverse | boolean Default: false If the reverse flag is set to true, the routing algorithm will invert direction restrictions (one way roads, turning restrictions, ect) to simulate a to the source(s). For polygon routing this can be used to calculate the polygon/area that could reach the source(s). |
object Specifies factors with which the travel times of the edges are adjusted. This may be necessary in certain areas where the travel time calculation is almost always off by a certain factor, e.g. Paris rush hour. "travelTimeFactors" : { "all":0.5, "motorway":1.5, .... (other specific edge classes possible) },.. Further specifics about the TravelTimeFactors:
| |
maxSnapDistance | integer Default: "Endpoint Specific" This defines the maximum distance allowed (in meters) between a defined source/target and the nearest point in the network it will connect. Any point that has a distance exceeding maxSnapDistance is treated like a point that exceeds maxEdgeWeight. |
showSnapInformation | boolean Default: false display information on snap distances in the response. Currently only available for Route, Time and reachability APIs |
object The exclusion geometry describes a GeoJSON object that should not be traveled through during the routing calculation. Any edges That intersect with the described geometry will be excluded from the routing. This can be used to simulate temporarily impassible routes or to deliberatley exclude certain ways. Both 'data' and 'crs' must be defined and do not have default values. |
{- "edgeWeight": "time",
- "maxEdgeWeight": "2000",
- "sources": [
- {
- "id": "POI:0",
- "lat": 52.5494892,
- "lng": 13.42883045,
- "tm": {
- "car": { }
}
}
], - "targets": [
- {
- "id": "Home 1",
- "lat": 52.53068102,
- "lng": 13.50658456
}
]
}
{- "data": {
- "routes": [
- {
- "edgeClasses": [
- 32,
- 21,
- 15,
- 31
], - "length": 6652.362617354172,
- "segments": [
- {
- "points": [
- [
- 6897368,
- 1503471,
- 57
], - [
- 6897367,
- 1503463,
- 58
], - [
- 6900071,
- 1494877,
- 53
]
], - "startname": "source",
- "endname": "target",
- "length": 6652.362617354172,
- "travelTime": 714,
- "type": "CAR"
}
], - "source_id": "source",
- "target_id": "target",
- "travelTime": 714
}
]
}, - "errors": [ ],
- "code": "ok",
- "message": "",
- "requestTime": "38"
}
Calculates the routes between provided sources targets. This will result in one route per source/target pair (e.g. 2 sources and 3 targets returns 6 routes). If more than one source is provided in the request each one can have a separate travel type (tm tag on schema) specified.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
cfg required | string Default: "{\n \"pathSerializer\": compact\n \"edgeWeight\": \"time\"\n \"sources\": [\n {\n \"id\": \"POI:0\",\n \"lat\": 52.5494892,\n \"lng\": 13.42883045,\n \"tm\": {\n \"car\": {}\n }\n }],\n \"targets\": [\n {\n \"id\": \"Home 1\",\n \"lat\": 52.53068102,\n \"lng\": 13.50658456\n }\n ]}" JSON Configuration as query parameter
|
{- "data": {
- "routes": [
- {
- "edgeClasses": [
- 32,
- 21,
- 15,
- 31
], - "length": 6652.362617354172,
- "segments": [
- {
- "points": [
- [
- 6897368,
- 1503471,
- 57
], - [
- 6897367,
- 1503463,
- 58
], - [
- 6900071,
- 1494877,
- 53
]
], - "startname": "source",
- "endname": "target",
- "length": 6652.362617354172,
- "travelTime": 714,
- "type": "CAR"
}
], - "source_id": "source",
- "target_id": "target",
- "travelTime": 714
}
]
}, - "errors": [ ],
- "code": "ok",
- "message": "",
- "requestTime": "38"
}
Orders with deadlines, priorities, and certain loads have to be delivered by several vehicles (with certain load capacities) from several depots. The Fleet API optimizes the distribution of orders onto vehicles and their routes such that the total tour length is minimized while fulfilling all constraints. For more information and detailed examples please have a look at targomo.com/developers.
The optimization problem to be solved consists of:
Facts are:
At the end of the tour, each vehicle needs to return to one of its possible endpoints (if they have been specified). Typically, the end point would be equal to the starting point.
The goal is to minimize the total travel-time of all tours. It may occur that not all available vehicles are used. If possible, all deadlines (or latest visiting times) should be met. Otherwise, the number of deadlines that have been exceeded must be minimized, while deadlines of high-priority orders will be treated preferably (see 'priority'). Similarly, the optimization tries to keep exceeding the valid working hours of vehicles to a minimum (if even needed).
The result of the optimization is a suggested tour plan, which specifies what vehicle should deliver which order (and in which order they should be delivered). The fleet/tour plan consists of multiple tours and each tour has the following information:
This section explains possible exceptions and their handling in the vehicle routing API. The programming interface returns machine-readable information on errors and the affected data sets - e.g. not accepted orders. There are three classes of optimization errors:
Whenever possible, at least partial solutions are offered (i.e., HTTP status code 202 Accepted). The optimization is not blocked by individual errors such as incorrect order addresses. If there is no solution that can meet the constraints, at least a partial solution is offered. If at all possible, the optimization is not denied.
Finds the optimal tours/routes for your fleet to service all your customers.
key required | string Example: key=__targomo_key_here__ This is the Targomo API (service) key that you receive once you are registered at targomo.com/developers. |
optimizationTime | integer <int32> >= 1 Default: 1 optimizationTime specifies the desired maximum run time in seconds this request can use for the optimization. The actual run time can be lower if a solution is found quicker, or exceeded when, for example other parts of the routing request, e.g. routing, parsing, serializing of the request response, take longer. |
optimizationAlgorithm required | string Enum: "NO_OPTIMIZATION" "GREEDY_TSP" "BRUTE_FORCE_TSP" "CONSTRAINT_SATISFACTION" optimizationAlgorithm specifies which optimization algorithm is to be used. The following options are available:
|
required | object (OptimizationMetadata) Metadata that is required for the optimization. |
required | Array of objects (Store) |
required | Array of objects (Transport) |
required | Array of objects (Order) |
{- "optimizationTime": 2,
- "optimizationAlgorithm": "CONSTRAINT_SATISFACTION",
- "stores": [
- {
- "uuid": "store1",
- "address": {
- "lat": 52.599204,
- "lng": 13.412017
}
}
], - "orders": [
- {
- "uuid": "firstOrder",
- "storeUuid": "store1",
- "address": {
- "lat": 52.5494892,
- "lng": 13.42883045,
- "avgHandlingTime": 250
}, - "deadline": "2017-07-26T23:38:18.520+02:00",
- "load": {
- "weight": 120.25,
- "volume": 0.52315455
}, - "comments": "this is a super important comment"
}, - {
- "uuid": "secondOrder",
- "storeUuid": "store1",
- "address": {
- "lat": 52.59343231,
- "lng": 13.46547477,
- "avgHandlingTime": 250
}, - "deadline": "2017-07-26T23:38:18.520+02:00",
- "load": {
- "weight": 120.25,
- "volume": 5.02315455
}
}
], - "transports": [
- {
- "vehicle": {
- "uuid": "car1",
- "name": "Gelber Flitzer",
- "loadRestrictions": {
- "weight": {
- "maxSum": 800
}, - "volume": {
- "maxSum": 5.9
}
}, - "storeUuid": "store1"
}, - "metadata": {
- "earliestDepartureTime": "2017-07-26T21:38:18.520+02:00",
- "start": {
- "lat": 52.599204,
- "lng": 13.412017
}
}
}
], - "optimizationMetadata": {
- "geojsonCreation": "NONE",
- "unimprovedWaitingTime": 1,
- "travelOptions": {
- "travelType": "car",
- "elevationEnabled": true,
- "maxEdgeWeight": 7200,
- "edgeWeight": "time",
- "serviceKey": "__targomo_key_here__"
}
}
}
{- "optimizationTime": 2,
- "optimizationAlgorithm": "CONSTRAINT_SATISFACTION",
- "stores": [
- {
- "uuid": "store1",
- "address": {
- "lat": 52.599204,
- "lng": 13.412017
}
}
], - "orders": [
- {
- "uuid": "firstOrderWithUuid",
- "storeUuid": "store1",
- "address": {
- "lat": 52.5494892,
- "lng": 13.42883045,
- "avgHandlingTime": 250
}, - "deadline": "2017-07-26T23:38:18.520+02:00",
- "load": {
- "weight": 120.25,
- "volume": 0.52315455
}, - "comments": "this is a super important comment"
}, - {
- "uuid": "secondOrderWithUuid",
- "storeUuid": "store1",
- "address": {
- "lat": 52.59343231,
- "lng": 13.46547477,
- "avgHandlingTime": 250
}, - "deadline": "2017-07-26T23:38:18.520+02:00",
- "load": {
- "weight": 120.25,
- "volume": 5.02315455
}
}
], - "transports": [
- {
- "vehicle": {
- "uuid": "car1",
- "name": "Gelber Flitzer",
- "loadRestrictions": {
- "weight": {
- "maxSum": 800
}, - "volume": {
- "maxSum": 5.9
}
}, - "storeUuid": "store1"
}, - "metadata": {
- "earliestDepartureTime": "2017-07-26T21:38:18.520+02:00",
- "start": {
- "lat": 52.599204,
- "lng": 13.412017
}
}
}
], - "optimizationMetadata": {
- "geojsonCreation": "NONE",
- "unimprovedWaitingTime": 1,
- "travelOptions": {
- "travelType": "car",
- "elevationEnabled": true,
- "maxEdgeWeight": 7200,
- "edgeWeight": "time",
- "serviceKey": "__targomo_key_here__"
}, - "costMatrixSource": "TRAVEL_COST_SERVICE",
- "filterOrdersWithMissedDeadline": false,
- "filterOrdersOutsideOfValidWorkingHours": false
}, - "tours": [
- {
- "loadSum": {
- "weight": 240.5,
- "volume": 5.5463091
}, - "durationTravel": 1256,
- "durationHandling": 500,
- "durationInterruptions": 0,
- "size": 2,
- "expectedTourStartDate": "2017-07-26T19:38:18Z",
- "expectedTourEndDate": "2017-07-26T20:07:34Z",
- "tourItems": [
- {
- "expectedArrival": "2017-07-26T19:49:06Z",
- "expectedDeparture": "2017-07-26T19:53:16Z",
- "duration": 648,
- "spareTime": 6552,
- "index": 0,
- "order": {
- "uuid": "secondOrderWithUuid",
- "deadline": "2017-07-26T21:38:18.52Z",
- "weight": 120.25,
- "volume": 5.02315455,
- "address": {
- "id": 2401,
- "lat": 52.59343231,
- "lng": 13.46547477,
- "avgHandlingTime": 250
}, - "storeUuid": "store1"
}
}, - {
- "expectedArrival": "2017-07-26T20:03:24Z",
- "expectedDeparture": "2017-07-26T20:07:34Z",
- "duration": 608,
- "spareTime": 5694,
- "index": 1,
- "order": {
- "uuid": "firstOrderWithUuid",
- "deadline": "2017-07-26T21:38:18.52Z",
- "weight": 120.25,
- "volume": 0.52315455,
- "comments": "this is a super important comment",
- "address": {
- "id": 2403,
- "lat": 52.5494892,
- "lng": 13.42883045,
- "avgHandlingTime": 250
}, - "storeUuid": "store1"
}
}
], - "vehicle": {
- "uuid": "car1",
- "name": "Gelber Flitzer",
- "maxVolume": 5.9,
- "maxWeight": 800,
- "storeUuid": "store1"
}, - "store": {
- "uuid": "store1",
- "address": {
- "lat": 52.599204,
- "lng": 13.412017
}
}, - "tourStart": {
- "lat": 52.599204,
- "lng": 13.412017
}, - "featureCollection": {
- "type": "FeatureCollection",
- "features": [ ]
}
}
], - "resultStatus": {
- "overall": "NO_ERRORS_RECORDED",
- "errors": null,
- "messages": [
- "Time Spent (0) Input Validation: PT0.015S",
- "Time Spent (1) Geocoding: PT0.004S",
- "Time Spent (2a) Store 'store1' - Getting CostMatrix: PT1.418S",
- "Time Spent (2b) Store 'store1' - Optimization: PT1.685S",
- "Time Spent (2c) Store 'store1' - Getting Geojson: skipped",
- "Time Spent (2a-c) Store 'store1' - Overall: : PT3.11S",
- "Time Spent (2) Processing all stores: PT3.115S",
- "Time Spent (-) Overall (excl. Validation): PT3.37S"
]
}
}