1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Match
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**r#type** | [**models::LocationType**](LocationType.md) | |
**category** | Option<**String**> | Experimental. Type categories might be adjusted. For OSM stop locations: the amenity type based on https://wiki.openstreetmap.org/wiki/OpenStreetMap_Carto/Symbols | [optional]
**tokens** | [**Vec<Vec<f64>>**](Vec.md) | list of non-overlapping tokens that were matched |
**name** | **String** | name of the location (transit stop / PoI / address) |
**id** | **String** | unique ID of the location |
**lat** | **f64** | latitude |
**lon** | **f64** | longitude |
**level** | Option<**f64**> | level according to OpenStreetMap (at the moment only for public transport) | [optional]
**street** | Option<**String**> | street name | [optional]
**house_number** | Option<**String**> | house number | [optional]
**country** | Option<**String**> | ISO3166-1 country code from OpenStreetMap | [optional]
**zip** | Option<**String**> | zip code | [optional]
**tz** | Option<**String**> | timezone name (e.g. \"Europe/Berlin\") | [optional]
**areas** | [**Vec<models::Area>**](Area.md) | list of areas |
**score** | **f64** | score according to the internal scoring system (the scoring algorithm might change in the future) |
**modes** | Option<[**Vec<models::Mode>**](Mode.md)> | available transport modes for stops | [optional]
**importance** | Option<**f64**> | importance of a stop, normalized from [0, 1] | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|