Points of interest (POIs)

Web services

POIs API documentation, available via HTTP-JSON/XML service.

URL base service:

* API KEY. Same KEY used in maps API js

HTTP requests in GET or POST
Response in JSON / XML format

Get the nearest POIs

Request:

Example:

&cmd=prox&mo=40.3691,-3.589&mocs=gdd&rqpoicats=C001&num=2&rad=10000

Where:

  • mo= Search center, format: lat,lon|ID
  • mocs=gdd Coordinate system (gdd = geographical - lat, long)
  • rqpoicats= List of POIs categories (separated by commas) to be searched, ordered by proximity
  • num= Maximum number of points to return (max: 1000)
  • rad= Maximum radius (in meters)

Response:

<cercalia cmd="prox" version="1">
   <proximity center="-399526,4892043" num="2" rad="10000" type="poi">
      <poilist num="2">
         <poi category_id="C001" dist="255" geometry="P" id="C17240002129068" pos="1" subcategory_id="-1">
            <name>La Paloma</name>
            <info>
               La Paloma. Avenida del Mediterráneo, Km11.9 - 28051 Vallecas. Tel: +(34) - (913) - 310648.
            </info>
            <ge>
               <city id="ESP17240001236707">Madrid</city>
               <municipality id="ESP280796">Madrid</municipality>
               <subregion id="ESP28">Madrid</subregion>
               <region id="ESPMAD">Comunidad de Madrid</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="-399238" y="4891872"/>
         </poi>
         <poi category_id="C001" dist="278" geometry="P" id="C17240021172930" pos="2" subcategory_id="-1">
            <name>Petronieves Madrid</name>
            <info>
               Petronieves Madrid. Carretera A-3, Km11.800 - 28051 Vallecas. Tel: +(34) - (911) - 701492.
            </info>
            <ge>
               <city id="ESP17240001236707">Madrid</city>
               <municipality id="ESP280796">Madrid</municipality>
               <subregion id="ESP28">Madrid</subregion>
               <region id="ESPMAD">Comunidad de Madrid</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="-399302" y="4891754"/>
         </poi>
      </poilist>
   </proximity>
   <server>http://cercalia-tomcat-lbs-instance2:8080</server>
</cercalia>

Where:

  • dist= projected straight-line distance (center point vs POI), in meters
  • pos= proximity order (from closest to least)
  • name= POI name
  • info= POI additional info

Get the neares POIs, using routing

Request:

Example:

&cmd=prox&mo=40.3691,-3.589&rqpoicats=C001&num=2&&weight=time&mocs=gdd&inverse=0

Where:

  • mo= Search center, format: lat,lon
  • mocs=gdd Coordinate system (gdd = geographical - lat, long)
  • rqpoicats= List of POIs categories (separated by commas) to be searched, ordered by proximity
  • num= Maximum number of points to return (optional)
  • rad= Maximum radius, in meters (optional)
  • weight= route type:
    • time (faster)
    • distance (shortest)
    • money (faster, avoiding tolls)
    • realtime (quickest, considering real time traffic data)
  • iweight=realtime Use this parameter to obtain the time of the route, based on the current traffic state.
  • inverse= If
    • 0 -> route times are from the center to the point list
    • 1 -> route times are from the list of points to the center

Routing based on departure time:

  • weight= route type:
    • sptime (quickest, based on departure time)
    • spmoney (quickest, based on departure time and avoiding toll roads)
  • departuretime= departure date and time, in ISO 8601 format. UTC time example:  2019-10-16T07:30:12Z  *Mandatory include &weigt= parameter.

Response:

<cercalia cmd="prox" version="1">
   <proximity center="-399526,4892043" inverse="0" num="2" type="poi" weight="time">
      <poilist num="2">
         <poi category_id="C001" dist="255" geometry="P" id="C17240002129068" pos="1" routedist="254" routerealtime="48750" routetime="48750" routeweight="48750" subcategory_id="-1">
            <name>La Paloma</name>
            <info>
               La Paloma. Avenida del Mediterráneo, Km11.9 - 28051 Vallecas. Tel: +(34) - (913) - 310648.
            </info>
            <ge>
               <city id="ESP17240001236707">Madrid</city>
               <municipality id="ESP280796">Madrid</municipality>
               <subregion id="ESP28">Madrid</subregion>
               <region id="ESPMAD">Comunidad de Madrid</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="-399238" y="4891872"/>
         </poi>
         <poi category_id="C001" dist="278" geometry="P" id="C17240021172930" pos="2" routedist="6535" routerealtime="422948" routetime="422948" routeweight="422948" subcategory_id="-1">
            <name>Petronieves Madrid</name>
            <info>
               Petronieves Madrid. Carretera A-3, Km11.800 - 28051 Vallecas. Tel: +(34) - (911) - 701492.
            </info>
            <ge>
               <city id="ESP17240001236707">Madrid</city>
               <municipality id="ESP280796">Madrid</municipality>
               <subregion id="ESP28">Madrid</subregion>
               <region id="ESPMAD">Comunidad de Madrid</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="-399302" y="4891754"/>
         </poi>
      </poilist>
   </proximity>
   <server>http://cercalia-tomcat-lbs-instance2:8080</server>
</cercalia>

Where:

  • dist= projected straight-line distance (center point vs POI), in meters.
  • routedist= route distance (center point vs POI), in meters.
  • routetime= route time (center point vs POI), in milliseconds.

Get the POIs along a route

Request:

Example:

&cmd=geom&routeweight=time&tolerance=5&routeid=2767920,2778988|0.6167333,0.6414299&getpoicats=C001&buffer=50

Where:

  • routeid= Route ID, from a cmd=route request (routes IDs are avaliable during some hours)
  • routeweight= route type used in the previous route request (cmd=route). Ex: time.
  • getpoicats= POIs categories to search
  • buffer= buffer distance to bue used in the POIs search, in meters (example: 50)
  • tolerance= route polyline simplification, in meters. Default: 100 meters.

Response:

<cercalia cmd="geom" version="1">
   <getpoicats>
      <poicats>
         <poicat>C001</poicat>
      </poicats>
      <poilist num="3">
         <poi category_id="C001" geometry="P" id="C12500016451860" subcategory_id="-1">
            <name>Super U SARL Billand Raffaitin</name>
            <info>
               Super U SARL Billand Raffaitin. 58190 Tannay. Tel: +(33) - (3) - 86293065.
            </info>
            <ge>
               <city id="FRA12500014936917">Tannay</city>
               <municipality id="FRA58286">Tannay</municipality>
               <subregion id="FRA58">Nièvre</subregion>
               <region id="FRA27">Bourgogne-Franche-Comté</region>
               <country id="FRA">France</country>
            </ge>
            <coord x="399233" y="5970808"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C12500020247575" subcategory_id="-1">
            <name>Carrefour Market le Briou</name>
            <info>
               Carrefour Market le Briou. 58700 Prémery. Tel: +(33) - (3) - 86379933.
            </info>
            <ge>
               <city id="FRA12500016768411">Prémery</city>
               <municipality id="FRA58218">Prémery</municipality>
               <subregion id="FRA58">Nièvre</subregion>
               <region id="FRA27">Bourgogne-Franche-Comté</region>
               <country id="FRA">France</country>
            </ge>
            <coord x="370345" y="5939255"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C12500064132999" subcategory_id="-1">
            <name>Renault Garage Durat SARL</name>
            <info>
               Renault Garage Durat SARL. Rue Pasteur - 58130 Châtres. Tel: +(33) - (3) - 86604056.
            </info>
            <ge>
               <street id="FRA058131000090067">Rue Pasteur</street>
               <city id="FRA12500014920398">Guérigny</city>
               <municipality id="FRA58131">Guérigny</municipality>
               <subregion id="FRA58">Nièvre</subregion>
               <region id="FRA27">Bourgogne-Franche-Comté</region>
               <country id="FRA">France</country>
            </ge>
            <coord x="355706" y="5925921"/>
         </poi>
      </poilist>
   </getpoicats>
   <server>http://cercalia-tomcat-lbs-instance2:8080</server>
</cercalia>

Get the POIs inside a map extension

Request:

Example:

&cmd=map&map=0&extent=42.144102962,-0.414886914|42.139342832,-0.407628526&cs=gdd&getpoicats=D00GAS

Where:

  • map=0/1 No include / include a static map (image). If only need POIs list, use map=0 for faster response 
  • cs=gdd Coordinate system (gdd = geographical - lat, long)
  • extent= map extension: Y,X|Y,X. Upper-left corner | Lower-right corner
  • getpoicats= POIs categories to search

Response:

<cercalia cmd="map" version="1">
   <proximity op="3"/>
   <map smap="0" style="default">
      <img center="-45781,5153555" format="gif" height="250" href="" scale="3" width="350">
      <extent>
         <coord x="-46938" y="5154381"/>
         <coord x="-44623" y="5152728"/>
      </extent>
      </img>
      <label op="1" pt="-45781,5153555"/>
      <poicats/>
      <shapes/>
      <getpoicats>
         <poicat>D00GAS</poicat>
         <poilist>
            <poi category_id="D00GAS" geometry="P" id="D00N04130421426I" subcategory_id="REP">
               <name>REPSOL</name>
               <info>
                  I|AVENIDA PAZ LA, 33|HUESCA|Huesca|HUESCA|22004|L-D: 24H|P|1.289|1.215||||||1.285|0.0
               </info>
               <ge>
                  <city id="ESP17240014245817">Huesca</city>
                  <municipality id="ESP221259">Aragón</municipality>
                  <subregion id="ESP22">Huesca</subregion>
                  <region id="ESPARA">Aragón</region>
                  <country id="ESP">España</country>
               </ge>
               <coord x="-45975" y="5153692"/>
               <pixels x="146" y="105"/>
            </poi>
            <poi category_id="D00GAS" geometry="P" id="D00N04105421411D" subcategory_id="REP">
               <name>REPSOL</name>
               <info>
                  D|CALLE COSO ALTO, 65|HUESCA|Huesca|HUESCA|22003|L-S: 07:00-21:00|P|1.299|1.229|||||||0.0
               </info>
               <ge>
                  <city id="ESP17240014245817">Huesca</city>
                  <municipality id="ESP221259">Aragón</municipality>
                  <subregion id="ESP22">Huesca</subregion>
                  <region id="ESPARA">Aragón</region>
                  <country id="ESP">España</country>
               </ge>
               <coord x="-45697" y="5153476"/>
               <pixels x="187" y="136"/>
            </poi>
         </poilist>
      </getpoicats>
   </map>
   <server>http://cercalia-tomcat-lbs-instance1:8080</server>
</cercalia>

Get the POIs inside a map extension, with zoom filtering

Request:

Example:

&cmd=map&map=0&extent=42.144102962,-0.414886914|42.139342832,-0.407628526&cs=gdd&mocs=gdd&gpoicats=D00GAS

Where:

  • map=0/1 No include / include a static map (image). If only need POIs list, use map=0 for faster response 
  • cs=gdd Coordinate system (gdd = geographical - lat, long)
  • extent= map extension: Y,X|Y,X. Upper-left corner | Lower-right corner
  • getpoicats= POIs categories to search
  • gridsize= (optional) Grid size used for POIs zoom filtering (higher value = more filtering).

Response:

<cercalia cmd="map" version="1">
   <proximity op="3"/>
   <map smap="0" style="default">
      <img center="-45781,5153555" format="gif" height="250" href="" scale="3" width="350">
      <extent>
         <coord x="-46938" y="5154381"/>
         <coord x="-44623" y="5152728"/>
      </extent>
      </img>
      <label op="1" pt="-45781,5153555"/>
      <poicats/>
      <shapes/>
      <gpoicats gridsize="100">
         <poicat>D00GAS</poicat>
         <poilist>
            <poi category_id="D00GAS" id="D00N04130421426I" subcategory_id="REP">
               <name>REPSOL</name>
               <info>
                  I|AVENIDA PAZ LA, 33|HUESCA|Huesca|HUESCA|22004|L-D: 24H|P|1.289|1.215||||||1.285|0.0
               </info>
               <ge>
                  <municipality id="ESP221259"/>
               </ge>
               <coord x="-45975" y="5153692"/>
               <pixels x="146" y="105"/>
            </poi>
            <poi category_id="D00GAS" id="D00N04105421411D" subcategory_id="REP">
               <name>REPSOL</name>
               <info>
                  D|CALLE COSO ALTO, 65|HUESCA|Huesca|HUESCA|22003|L-S: 07:00-21:00|P|1.299|1.229|||||||0.0
               </info>
               <ge>
                  <municipality id="ESP221259"/>
               </ge>
               <coord x="-45697" y="5153476"/>
               <pixels x="187" y="136"/>
            </poi>
         </poilist>
      </gpoicats>
   </map>
   <server>http://cercalia-tomcat-lbs-instance4:8080</server>
</cercalia>

Get the POIs inside a polygon

Request:

Example:

&cmd=prox&rqpoicats=C001&cs=4326&wkt=POLYGON((2.149028778076172%2041.39586980544921,2.146625518798828%2041.41930231731321,2.1816444396972656%2041.41981722266227,2.1813011169433594%2041.398187683195694,2.149028778076172%2041.39586980544921))

Where:

  • cs=4326 Coordinate system (gdd = 4326 -> lat, long)
  • wkt= Polygon, in WKY format
  • rqpoicats= POIs categories to search

Response:

<cercalia cmd="prox" version="1">
   <proximity buffer="0.0" cs="4326" tolerance="0.0" type="poi" wkt="POLYGON((2.149028778076172 41.39586980544921,2.146625518798828 41.41930231731321,2.1816444396972656 41.41981722266227,2.1813011169433594 41.398187683195694,2.149028778076172 41.39586980544921))">
      <poilist num="9">
         <poi category_id="C001" geometry="P" id="C17240021654449" subcategory_id="-1">
            <name>Repsol Virgen Montserrat</name>
            <info>
               Repsol Virgen Montserrat. Avinguda de la Mare de Déu de Montserrat, 87 - 08024 el Baix Guinardo. Tel: +(34) - (932) - 846895. Web: www.repsol.com.
            </info>
            <ge>
               <housenumber>87</housenumber>
               <street id="ESP080193000002201">Avinguda de la Mare de Déu de Montserrat</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="241233" y="5045553"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240021289700" subcategory_id="-1">
            <name>Repsol Gaudí</name>
            <info>
               Repsol Gaudí. Avinguda de Gaudí, 1 - 08025 la Sagrada Familla. Tel: +(34) - (934) - 368678. Web: www.repsol.com.
            </info>
            <ge>
               <housenumber>1</housenumber>
               <street id="ESP080193000001601">Avinguda de Gaudí</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="242033" y="5043980"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240008194462" subcategory_id="-1">
            <name>Shell Piserra</name>
            <info>
               Shell Piserra. Carrer de València, 503 - 08013 la Sagrada Familla. Tel: +(34) - (932) - 326760. Web: www.disagrupo.es.
            </info>
            <ge>
               <housenumber>503</housenumber>
               <street id="ESP080193000090014">Carrer de València</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="242668" y="5044022"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240007817635" subcategory_id="-1">
            <name>Cerdeña</name>
            <info>
               Cerdeña. Carrer de Sardenya, 225 - 08013 el Fort Pienc.
            </info>
            <ge>
               <housenumber>225</housenumber>
               <street id="ESP080193000003488">Carrer de Sardenya</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="242380" y="5043279"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240021627986" subcategory_id="-1">
            <name>Galp Sant Antoni Maria Claret</name>
            <info>
               Galp Sant Antoni Maria Claret. Carrer de Sant Antoni Maria Claret, 2 - 08041 Navas. Tel: +(34) - (934) - 369116. Web: www.galpenergia.com.
            </info>
            <ge>
               <housenumber>2</housenumber>
               <street id="ESP080193000002184">Passeig de Maragall</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="242700" y="5045602"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240008422187" subcategory_id="-1">
            <name>Gratsa</name>
            <info>
               Gratsa. Passeig de Maragall, 33 - 08041 el Camp de l'Arpa del Clot. Tel: +(34) - (934) - 547418.
            </info>
            <ge>
               <housenumber>33</housenumber>
               <street id="ESP080193000002184">Passeig de Maragall</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="242729" y="5045471"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240021348129" subcategory_id="-1">
            <name>Repsol G.E.D.S.</name>
            <info>
               Repsol G.E.D.S.. Carrer de Provença, 309 - 08037 el Camp d'en Grassot i Gracia Nova. Tel: +(34) - (934) - 580811. Web: www.repsol.com.
            </info>
            <ge>
               <housenumber>309</housenumber>
               <street id="ESP080193000002996">Carrer de Provença</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="241167" y="5043062"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240021457000" subcategory_id="-1">
            <name>Repsol San Juan-Diagonal</name>
            <info>
               Repsol San Juan-Diagonal. Passeig Sant Joan - 08037 el Camp d'en Grassot i Gracia Nova. Web: www.repsol.com.
            </info>
            <ge>
               <street id="ESP080193000003349">Passeig Sant Joan</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="241526" y="5043204"/>
         </poi>
         <poi category_id="C001" geometry="P" id="C17240021206794" subcategory_id="-1">
            <name>Repsol Legalitat</name>
            <info>
               Repsol Legalitat. Carrer de la Legalitat, 59 - 08024 el Baix Guinardo. Tel: +(34) - (932) - 195641. Web: www.repsol.com.
            </info>
            <ge>
               <housenumber>59</housenumber>
               <street id="ESP080193000001884">Carrer de la Legalitat</street>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="240646" y="5044535"/>
         </poi>
      </poilist>
   </proximity>
   <server>http://cercalia-tomcat-lbs-instance4:8080</server>
</cercalia>

Weather forecast location

Get the meteo forecast, from a coordinate. The weather forecast is available for all the world, but with more or less density depending on the country.

Request:

Example:

&cmd=prox&rqpoicats=D00M05&mocs=gdd&mo=41.39818,2.1490287

Where:

  • mocs=gdd Coordinate system (gdd = geographical - lat, long)
  • mo= Search center, format: lat,lon
  • rqpoicats=D00M05 Meteo info category

Response:

<cercalia cmd="prox" version="1">
   <proximity center="239229,5042989" num="1" type="poi">
      <poilist num="1">
         <poi category_id="D00M05" dist="2082" geometry="P" id="D00M0508019" pos="1" subcategory_id="043">
            <name>Barcelona</name>
            <info>
               2019-06-14T09:24:01|2019-06-14|60|55|||43|43|15|15|25|17|2019-06-15|15|5|||13|13|10|10|22|16|2019-06-16|0|0|||12|12|24|16|2019-06-17|0||11|26|16|2019-06-18|0||11|26|17|2019-06-19|0||11|25|17
            </info>
            <ge>
               <city id="ESP17240008430951">Barcelona</city>
               <municipality id="ESP080193">Barcelona</municipality>
               <subregion id="ESP08">Barcelona</subregion>
               <region id="ESPCAT">Catalunya</region>
               <country id="ESP">España</country>
            </ge>
            <coord x="241554" y="5041472"/>
         </poi>
      </poilist>
   </proximity>
   <server>http://cercalia-tomcat-lbs-instance3:8080</server>
</cercalia>

Where:

  • <name> Nearest locality name, with meteo info
  • <info> Meteo forecast, with this format:

Day +1

<day date>

<chance of precipitation time=”00-12”>

<chance of precipitation time=”12-24”>

<snow_level time=”00-12”>

<snow_level time=”12-24”>

<sky_conditions time=”00-12”> (1)

<sky_conditions time=”12-24”> (1)

<wind><speed time=”00-12”>

<wind><speed time=”12-24”>

<temperature><max>

<temperature><min>

Day +2

<day date>

<chance of precipitation time=”00-12”>

<chance of precipitation time=”12-24”>

<snow_level time=”00-12”>

<snow_level time=”12-24”>

<sky_conditions time=”00-12”> (1)

<sky_conditions time=”12-24”> (1)

<wind><speed time=”00-12”>

<wind><speed time=”12-24”>

<temperature><max>

<temperature><min>

Day +3

<day date>

<chance of precipitation time=”00-12”>

<chance of precipitation time=”12-24”>

<snow_level time=”00-12”>

<snow_level time=”12-24”>

<sky_conditions time=”00-12”> (1)

<sky_conditions time=”12-24”> (1)

<temperature><max>

<temperature><min>

Day +4

<day date>

<chance of precipitation>

<snow_level>

<sky_conditions>(1)

<temperature><max>

<temperature><min>

Day +5

<day date>

<chance of precipitation>

<snow_level>

<sky_conditions>(1)

<temperature><max>

<temperature><min>

Day +6

<day date>

<chance of precipitation>

<snow_level>

<sky_conditions>(1)

<temperature><max>

<temperature><min>

(1) Sky conditions values:

Icon

ID

DESC

11

Clear

12

A little bit cloudy

13

Cloudy intervals

14

Cloudy

15

Very cloudy

16

Very cloudy

17

Thin clouds

23

Cloudy intervals with rain

24

Cloudy with rain

25

Very cloudy with rain

26

Cloudy with rain

33

Cloudy intervals with snow

34

Cloudy with snow

35

Very cloudy with snow

36

Cloudy with snow

43

Cloudy intervals with rain

44

Cloudy with little rain

45

Very cloudy with little rain

46

Cloudy with little rain

51

Cloudy intervals with storm

52

Cloudy with storm

53

Very cloudy with storm

54

Cloudy with storm

61

Cloudy intervals with storm and little rain

62

Cloudy with storm and little rain

63

Very cloudy with storm and little rain

64

Cloudy with storm and little rain

71

Cloudy intervals with little snow

72

Cloudy with little snow

73

Very cloudy with little snow

74

Cloudy with little snow

Example:

meteo implementation

POIs categories

POIs categories codes:

Category

Code

Gas stations

C001

Gas station with daily updated price (only Spain)

D00GAS

Compressed Natural Gas Gas Stations - CNG (only Spain)

D00GNC

Electric vehicle charging points

D104

Parking & rest area

C002

Service area

C003

Train station

C004

Airport and Terminals

C005,C016

Ferry terminal

C006

Parking

C007

Car sales

C008

Hospital

C009

Primary Assistance Center (only Spain)

D00CAP

Mall

C010

Post Office

C011

Public administration building

C012

Hotel

C013

Restaurant

C014

Stadium

C015

Airport access

C016

Mountain pass

C017

Embassy

C018

Border crossing

C019

Mountain peak

C020

Panoramic view

C021

Beach

C022

Camping

C023

ATM

C024

Cinema

C025

Pharmacy

C026

University / School

C027

Mechanical workshop

C028

Tourist information center

C029

Museum

C030

Theater

C031

Sports Center

C032

Police station

C033

Pool

C034

Cult place

C035

Casino

C036

Important tourist attraction

C037

Ice skating rink

C038

Park and recreation area

C039

Courthouse

C040

Opera

C041

Concert hall

C042

Convention Center

C043

Leisure port, sports port

C044

Theme park

C045

Golf course

C046

Library

C047

Zoo

C048

Subway

C049

Industrial Estate

C050

Tram stop

C051

Windshield workshop

C052

Sale and repair of tires

C053

Motorcycle workshop

C054

Truck workshop

C055

Car dealership

C056

Motorcycle dealer

C057

Yacht dealer

C058

Recreational Vehicle Dealer

C059

Truck dealer

C060

Van dealer

C061

Coach dealer

C062

Snow vehicle Dealer

C063

Company (transport and logistics)

C064

Company (health)

C065

Company (Mining & Oil & Gas)

C066

Company (construction)

C067

Company (companies and offices)

C068

Coastal park

C069

Ski resort

C070

Company (bus and taxi services)

C071

Botanic Park

C072

Water park

C074

Wildlife park

C075

Bed & Breakfast

C076

Hotel resort

C077

Supermarket & Hypermarket

C078

Military airport

C079

Airfield

C080

Interurban BUS stop

C081

Taxi stop

C082

Coach stop

C083

Store (bookstore)

C084

Store (CD's, DVD & Videos)

C085

Shop (clothing & accessories)

C086

Store (convenience items)

C087

Store (computers, electronics, photography, etc)

C088

Store (real estate)

C089

Shop (outlet)

C090

Shop (florist)

C091

Shop (food)

C092

Shop (gifts, souvenirs)

C093

Tent (house, garden)

C094

Shop (jewelry)

C095

Kiosk

C096

Shop (optical)

C097

Shop (sports equipment)

C098

Store (toy store)

C099

Shop (travel agency)

C100

Tent (construction material)

C101

Store (other)

C102

Store (mobile phone)

C103

Rent a car

C105

Bank

C106

Market

C107

Truck parking

C108

Car wash

C109

Industry

C110

Car rental parking

C111

Public transport stop, uncategorized

C112

Tramways (only Spain)

D00TRA

Urban BUS stops

D00BUS

Nurseries (only Spain)

D00GUA

Early childhood education schools (only Spain)

D00ESC|INF

Primary schools (only Spain)

D00ESC|PRI

Secondary and Baccalaureate Schools (only Spain)

D00ESC|SEC

Professional development schools (only Spain)

D00ESC|FPR

Other types of schools (only Spain)

D00ESC|RES

Spped cams ((only Spain)

D00RAD

Dangerous road points (only Spain)

D00PNG

Traffic cameras

D00CAM