Mkgmap e mappe Garmin da Openstreetmap (OSM)

  • La Pinarello Dogma XC è finalmente disponibile al pubblico! Dopo averla vista sul gradino più alto del podio dei campionati del mondo di XC 2023 con Tom Pidcock (con la full) e Pauline Ferrand-Prevot (con la front), Stefano Udeschini ha avuto modo di provarla sui sentieri del Garda
    Iscriviti al canale se non l'hai ancora fatto (clicca qui).


ataro

Biker celestialis
16/4/09
7.778
9
0
Marche
Visita sito
Beccato! mancava il 64bit. Adesso ho installato anche quello ed è partito......
vediamo se arriva in fondo....
già si vede la differenza di velocità.
Grazie ancora a tutti.
Non mi ricordo più di quanto aumenta, ma di molto, soprattutto lo splitter.
Io splitto un file .osm da 100 mb in 5s e compilo forzatamente a job singolo in 19s (se attivo il max-jobs la velocità è più che doppia con mkgmap, ma il pc diventa una stufa, mentre con lo splitter non succede)
 

Clif1969

Biker popularis
31/3/13
81
0
0
54
Tarcento (UD)
Visita sito
Ciao ragazzi, come ve la passate? Sono a chiedere il Vs. prezioso aiuto perchè ho un problema che cerco di risolvere da diversi giorni e non so più dove sbattere la testa. Vorrei abbreviare il tag operatore di una relazione scrivendo CAI invece di Club Alpino Italiano.

Tags della relazione:
operator:Club Alpino Italiano
ref=837
route=hiking
type=route


Ho il seguente file relation:

# Intercetto tutte le relation di tipo ruote
type=route & route=* & (name=* | ref=*)
{
add name='${ref}';
apply {
set route='$(route),${route}'|'${route}';
set route_name='$(route_name),${name}'|'${name}';
set route_ref='$(route_ref),${ref}'|'${ref}';
set route_operator='$(route_operator),${operator}'|'${operator}';
}
}

mentre il file lines è il seguente:

route=hiking & (route_operator='Club_Alpino_Italiano' |
route_operator='CAI' |
route_operator='C.A.I.') {set name='${route_name} (CAI)'}
route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]


Ho fatto diversi tentativi ma non ne sono venuto a capo...
Ringrazio tutti anticipatamente per gli eventuali suggerimenti
 

scratera

Biker nirvanensus
30/6/07
26.176
2.376
0
rovereto TN
Visita sito
Bike
...
.. @Clif1969...hai provato a scrivere così

route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]
route=hiking & (route_operator='Club_Alpino_Italiano' | route_operator='CAI' | route_operator='C.A.I.') {set name='${name} CAI' | 'CAI'} [0x10800 resolution 22 continue]


...in questo modo dovrebbe darti due scritte

  • nome CAI
  • nome
nel caso che trova ambedue le opzioni nella relazione e quando non trova la seconda che contempla operatore non dovrebbe scrivere "nome CAI"
 

Clif1969

Biker popularis
31/3/13
81
0
0
54
Tarcento (UD)
Visita sito
.. @Clif1969...hai provato a scrivere così

route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]
route=hiking & (route_operator='Club_Alpino_Italiano' | route_operator='CAI' | route_operator='C.A.I.') {set name='${name} CAI' | 'CAI'} [0x10800 resolution 22 continue]


...in questo modo dovrebbe darti due scritte

  • nome CAI
  • nome
nel caso che trova ambedue le opzioni nella relazione e quando non trova la seconda che contempla operatore non dovrebbe scrivere "nome CAI"

Ho provato anche così ma continua a non funzionare.. da quel poco che ho capito mi sembra che si comporti come se il tag route_operator, generato dalla relation, non risulti contenere la scritta 'Club Alpino Italiano', mentre in realtà, se lo stampo esce scritto Club Alpino Italiano.
Il risultato della prova è stato che mi ha stampato solo
nome
e non
nome CAI

Non so più dove sbattere la testa:pirletto:
 

ataro

Biker celestialis
16/4/09
7.778
9
0
Marche
Visita sito
Ho provato anche così ma continua a non funzionare.. da quel poco che ho capito mi sembra che si comporti come se il tag route_operator, generato dalla relation, non risulti contenere la scritta 'Club Alpino Italiano', mentre in realtà, se lo stampo esce scritto Club Alpino Italiano.
Il risultato della prova è stato che mi ha stampato solo
nome
e non
nome CAI

Non so più dove sbattere la testa:pirletto:
Prova così:
route=hiking & (route_operator="Club Alpino Italiano" |
route_operator='CAI' |
route_operator='C.A.I.') {name '${route_name} (CAI)'}
route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]
 

Clif1969

Biker popularis
31/3/13
81
0
0
54
Tarcento (UD)
Visita sito
Prova così:
route=hiking & (route_operator="Club Alpino Italiano" |
route_operator='CAI' |
route_operator='C.A.I.') {name '${route_name} (CAI)'}
route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]

Ciao Ataro e Grazie per la risposta, ma toglimi una curiosità:
se è verificata la prima condizione (cioè route=hiking & (route_operator="Club Alpino Italiano" | ... ecc, ecc,), anche la seconda condizione sarà verificata e con il risultato che il name stampato sarà sempre uguale a '${route_name}', o mi sbaglio?
 

ataro

Biker celestialis
16/4/09
7.778
9
0
Marche
Visita sito
Ciao Ataro e Grazie per la risposta, ma toglimi una curiosità:
se è verificata la prima condizione (cioè route=hiking & (route_operator="Club Alpino Italiano" | ... ecc, ecc,), anche la seconda condizione sarà verificata e con il risultato che il name stampato sarà sempre uguale a '${route_name}', o mi sbaglio?
Sbagli.
paragrafo 4.3.6. name
http://www.mkgmap.org.uk/doc/pdf/style-manual.pdf
Se il primo name viene eseguito, il secondo non ha effetto. Se invece usi set name= la seconda riga cancella l'effetto della prima.
 

Clif1969

Biker popularis
31/3/13
81
0
0
54
Tarcento (UD)
Visita sito
Sbagli.
paragrafo 4.3.6. name
http://www.mkgmap.org.uk/doc/pdf/style-manual.pdf
Se il primo name viene eseguito, il secondo non ha effetto. Se invece usi set name= la seconda riga cancella l'effetto della prima.

Perdona la mia ignoranza.. è da pochi mesi che sono alle prese con questa sorta di linguaggio e nonostante abbia letto più e più volte il manuale tante cose mi restano di difficile comprensione (sarà anche perchè l'inglese lo mastico poco)
Ho provato come mi hai suggerito tu ma alla fine non sono riuscito ad ottenere quello che mi aspettavo.
Inserendo i comandi che mi hai suggerito non viene visualizzato nessun name.
Allora ho provato a rendere innocua la prima riga inserendo come primo carattere #
Il risultato è stato che mi ha stampato il name (ovviamente senza la scritta CAI.
Ma allora mi chiedo: perchè nel primo caso non ha mostrato nulla??? :cry::cry::cry:
Qualche suggerimento?
(Ho la sensazione che nel tag route_operator ci sia qualcosa che mi sfugge) ma non so cosa .... :pirletto::pirletto::pirletto:
 

ataro

Biker celestialis
16/4/09
7.778
9
0
Marche
Visita sito
.....................
Inserendo i comandi che mi hai suggerito non viene visualizzato nessun name.
Allora ho provato a rendere innocua la prima riga inserendo come primo carattere #
Il risultato è stato che mi ha stampato il name (ovviamente senza la scritta CAI.
Ma allora mi chiedo: perchè nel primo caso non ha mostrato nulla??? :cry::cry::cry:
Qualche suggerimento?
(Ho la sensazione che nel tag route_operator ci sia qualcosa che mi sfugge) ma non so cosa .... :pirletto::pirletto::pirletto:
Tags della relazione:
operator=Club Alpino Italiano
ref=837
route=hiking
type=route
........route_operator='C.A.I.') {name '${route_name} (CAI)'}
route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]
Su altre relazioni route=hiking qualcosa dovresti vedere, ma non su questa, perché il nome non ce l'ha ....

edit .
add name='${ref}';
il nome ce l'ha.
Boh!
metti qualche echo per vedere cosa succede
 

Clif1969

Biker popularis
31/3/13
81
0
0
54
Tarcento (UD)
Visita sito
Tags della relazione:
operator=Club Alpino Italiano
ref=837
route=hiking
type=route
........route_operator='C.A.I.') {name '${route_name} (CAI)'}
route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]
Su altre relazioni route=hiking qualcosa dovresti vedere, ma non su questa, perché il nome non ce l'ha ....

edit .
add name='${ref}';
il nome ce l'ha.
Boh!
metti qualche echo per vedere cosa succede

Cosa significa 'metti qualche echo'?:nunsacci:
 

Clif1969

Biker popularis
31/3/13
81
0
0
54
Tarcento (UD)
Visita sito
Tags della relazione:
operator=Club Alpino Italiano
ref=837
route=hiking
type=route
........route_operator='C.A.I.') {name '${route_name} (CAI)'}
route=hiking {name '${route_name}'} [0x10800 resolution 22 continue]
Su altre relazioni route=hiking qualcosa dovresti vedere, ma non su questa, perché il nome non ce l'ha ....

edit .
add name='${ref}';
il nome ce l'ha.
Boh!
metti qualche echo per vedere cosa succede

Ciao Ataro, ho scoperto dov'e il problema.
Penso che sia un Bug, infatti:
(premetto che l'highway in esame è membro della route in esame)
Allora:
Ho configurato lo style in modo che, sia l'highway=path che il name vengano stampati con il colore rosso chiaro.
Similmente, sempre nello style, ho impostato che la relazione route=hiking e il rispettivo name vengano stampati con colore rosso scuro, diversificando i colori usati per gli highway da quelli usati per le route.
Ho scoperto che se la l'highway e la route hanno lo stesso name, i rispettivi name vengono stampati tutti e due con lo stesso colore (così non si capisce se il name visualizzato sia dell'highway oppure della route); mentre se i name sono diversi vengono stampati con i colori impostati nello style, che nel mio caso erano diversi... buono a sapersi.
Ciao e grazie comunque per i vari suggerimenti
 

ataro

Biker celestialis
16/4/09
7.778
9
0
Marche
Visita sito
Partendo dal database in formato osm ho estratto i seguenti tags (riportati prima del =*):

node / points:

abandoned =* { echotags "Point not rendered" }
access =* { echotags "Point not rendered" }
addr:city =* { echotags "Point not rendered" }
addr:country =* { echotags "Point not rendered" }
addr:housename =* { echotags "Point not rendered" }
addr:housenumber =* { echotags "Point not rendered" }
addr:postcode =* { echotags "Point not rendered" }
addr:province =* { echotags "Point not rendered" }
addr:street =* { echotags "Point not rendered" }
aerialway =* { echotags "Point not rendered" }
aeroway =* { echotags "Point not rendered" }
agritourism =* { echotags "Point not rendered" }
airmark =* { echotags "Point not rendered" }
alt =* { echotags "Point not rendered" }
alt_name =* { echotags "Point not rendered" }
amenity =* { echotags "Point not rendered" }
animals =* { echotags "Point not rendered" }
artist_name =* { echotags "Point not rendered" }
artwork =* { echotags "Point not rendered" }
artwork_type =* { echotags "Point not rendered" }
atm =* { echotags "Point not rendered" }
backrest =* { echotags "Point not rendered" }
barbecue_grill =* { echotags "Point not rendered" }
barrier =* { echotags "Point not rendered" }
beacon:code =* { echotags "Point not rendered" }
beacon:frequency =* { echotags "Point not rendered" }
beacon:type =* { echotags "Point not rendered" }
bench =* { echotags "Point not rendered" }
bicycle =* { echotags "Point not rendered" }
board_type =* { echotags "Point not rendered" }
brand =* { echotags "Point not rendered" }
building =* { echotags "Point not rendered" }
bus =* { echotags "Point not rendered" }
capacity =* { echotags "Point not rendered" }
capital =* { echotags "Point not rendered" }
car =* { echotags "Point not rendered" }
caravans =* { echotags "Point not rendered" }
castle_type =* { echotags "Point not rendered" }
clothes =* { echotags "Point not rendered" }
club =* { echotags "Point not rendered" }
cng =* { echotags "Point not rendered" }
colour =* { echotags "Point not rendered" }
communication:mobile_phone =* { echotags "Point not rendered" }
community =* { echotags "Point not rendered" }
community:it =* { echotags "Point not rendered" }
contact:phone =* { echotags "Point not rendered" }
covered =* { echotags "Point not rendered" }
craft =* { echotags "Point not rendered" }
created_by =* { echotags "Point not rendered" }
crossing =* { echotags "Point not rendered" }
crossing:barrier =* { echotags "Point not rendered" }
crossing:bell =* { echotags "Point not rendered" }
crossing:light =* { echotags "Point not rendered" }
crossing_ref =* { echotags "Point not rendered" }
cuisine =* { echotags "Point not rendered" }
cuisine =* { echotags "Point not rendered" }
"cuisine = pizza;kebab"=* { echotags "Point not rendered" }
currency:EUR =* { echotags "Point not rendered" }
date =* { echotags "Point not rendered" }
denomination =* { echotags "Point not rendered" }
depth =* { echotags "Point not rendered" }
description =* { echotags "Point not rendered" }
description =* { echotags "Point not rendered" }
description =* { echotags "Point not rendered" }
designation =* { echotags "Point not rendered" }
direction =* { echotags "Point not rendered" }
dispensing =* { echotags "Point not rendered" }
display =* { echotags "Point not rendered" }
disused =* { echotags "Point not rendered" }
disused:amenity =* { echotags "Point not rendered" }
disused:cuisine =* { echotags "Point not rendered" }
disused:name =* { echotags "Point not rendered" }
disused:old_name =* { echotags "Point not rendered" }
drinkable =* { echotags "Point not rendered" }
drinking_water =* { echotags "Point not rendered" }
ele =* { echotags "Point not rendered" }
email =* { echotags "Point not rendered" }
emergency =* { echotags "Point not rendered" }
entrance =* { echotags "Point not rendered" }
fax =* { echotags "Point not rendered" }
fee =* { echotags "Point not rendered" }
fence:material =* { echotags "Point not rendered" }
fireplace =* { echotags "Point not rendered" }
fixme =* { echotags "Point not rendered" }
foot =* { echotags "Point not rendered" }
ford =* { echotags "Point not rendered" }
fuel =* { echotags "Point not rendered" }
fuel:1_25 =* { echotags "Point not rendered" }
fuel:biodiesel =* { echotags "Point not rendered" }
fuel:biogas =* { echotags "Point not rendered" }
fuel:cng =* { echotags "Point not rendered" }
fuel:diesel =* { echotags "Point not rendered" }
fuel:e10 =* { echotags "Point not rendered" }
fuel:electricity =* { echotags "Point not rendered" }
fuel:lpg =* { echotags "Point not rendered" }
fuel:octane_80 =* { echotags "Point not rendered" }
fuel:octane_91 =* { echotags "Point not rendered" }
fuel:octane_95 =* { echotags "Point not rendered" }
fuel:octane_98 =* { echotags "Point not rendered" }
generator:method =* { echotags "Point not rendered" }
generator:output:electricity =* { echotags "Point not rendered" }
generator:source =* { echotags "Point not rendered" }
generator:type =* { echotags "Point not rendered" }
genus =* { echotags "Point not rendered" }
genus:en =* { echotags "Point not rendered" }
gfoss_id =* { echotags "Point not rendered" }
golf:course =* { echotags "Point not rendered" }
heating =* { echotags "Point not rendered" }
heritage =* { echotags "Point not rendered" }
heritage:operator =* { echotags "Point not rendered" }
hgv =* { echotags "Point not rendered" }
highway =* { echotags "Point not rendered" }
hiking =* { echotags "Point not rendered" }
historic =* { echotags "Point not rendered" }
horse =* { echotags "Point not rendered" }
indoor =* { echotags "Point not rendered" }
info=* { echotags "Point not rendered" }
information =* { echotags "Point not rendered" }
int_name =* { echotags "Point not rendered" }
internet_access =* { echotags "Point not rendered" }
internet_access:fee =* { echotags "Point not rendered" }
is_in =* { echotags "Point not rendered" }
is_in:city =* { echotags "Point not rendered" }
is_in:continent =* { echotags "Point not rendered" }
is_in:country =* { echotags "Point not rendered" }
is_in:country_code =* { echotags "Point not rendered" }
is_in:state =* { echotags "Point not rendered" }
is_in:town =* { echotags "Point not rendered" }
isced:level =* { echotags "Point not rendered" }
iso3166-2 =* { echotags "Point not rendered" }
istat_id =* { echotags "Point not rendered" }
landuse =* { echotags "Point not rendered" }
layer =* { echotags "Point not rendered" }
leisure =* { echotags "Point not rendered" }
level =* { echotags "Point not rendered" }
loc_name =* { echotags "Point not rendered" }
local_ref =* { echotags "Point not rendered" }
lock =* { echotags "Point not rendered" }
man_made =* { echotags "Point not rendered" }
map_size =* { echotags "Point not rendered" }
map_type =* { echotags "Point not rendered" }
material =* { echotags "Point not rendered" }
mattress =* { echotags "Point not rendered" }
maxheight =* { echotags "Point not rendered" }
maxspeed =* { echotags "Point not rendered" }
monitoring:weather =* { echotags "Point not rendered" }
monument =* { echotags "Point not rendered" }
motor_vehicle =* { echotags "Point not rendered" }
motorcar =* { echotags "Point not rendered" }
motorcycle =* { echotags "Point not rendered" }
mountain_pass =* { echotags "Point not rendered" }
name =* { echotags "Point not rendered" }
name:ar =* { echotags "Point not rendered" }
name:be =* { echotags "Point not rendered" }
name:botanical =* { echotags "Point not rendered" }
name:de =* { echotags "Point not rendered" }
name:en =* { echotags "Point not rendered" }
name:eo =* { echotags "Point not rendered" }
name:es =* { echotags "Point not rendered" }
name:fr =* { echotags "Point not rendered" }
name:he =* { echotags "Point not rendered" }
name:it =* { echotags "Point not rendered" }
name:la =* { echotags "Point not rendered" }
name:pl =* { echotags "Point not rendered" }
name:pt =* { echotags "Point not rendered" }
name:ru =* { echotags "Point not rendered" }
name:sl =* { echotags "Point not rendered" }
name:uk =* { echotags "Point not rendered" }
name:zh =* { echotags "Point not rendered" }
natural =* { echotags "Point not rendered" }
natural =* { echotags "Point not rendered" }
network =* { echotags "Point not rendered" }
noexit =* { echotags "Point not rendered" }
note =* { echotags "Point not rendered" }
note =* { echotags "Point not rendered" }
notes =* { echotags "Point not rendered" }
office =* { echotags "Point not rendered" }
old_amenity =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_name =* { echotags "Point not rendered" }
old_postal_code =* { echotags "Point not rendered" }
old_ref =* { echotags "Point not rendered" }
old_shop =* { echotags "Point not rendered" }
opening_hours =* { echotags "Point not rendered" }
operator =* { echotags "Point not rendered" }
parking =* { echotags "Point not rendered" }
Parrocchia =* { echotags "Point not rendered" }
payment:bancomat =* { echotags "Point not rendered" }
payment:bitcoin =* { echotags "Point not rendered" }
payment:coins =* { echotags "Point not rendered" }
payment:credit_cards =* { echotags "Point not rendered" }
payment:debit_cards =* { echotags "Point not rendered" }
payment:electronic_purses =* { echotags "Point not rendered" }
payment:litecoin =* { echotags "Point not rendered" }
payment:mastercard =* { echotags "Point not rendered" }
payment:notes =* { echotags "Point not rendered" }
payment:telephone_cards =* { echotags "Point not rendered" }
payment:visa =* { echotags "Point not rendered" }
phone =* { echotags "Point not rendered" }
pipeline =* { echotags "Point not rendered" }
pk =* { echotags "Point not rendered" }
place =* { echotags "Point not rendered" }
population =* { echotags "Point not rendered" }
postal_code =* { echotags "Point not rendered" }
power =* { echotags "Point not rendered" }
power_supply =* { echotags "Point not rendered" }
produce =* { echotags "Point not rendered" }
public_transport =* { echotags "Point not rendered" }
railway =* { echotags "Point not rendered" }
recycling:batteries =* { echotags "Point not rendered" }
recycling:cans =* { echotags "Point not rendered" }
recycling:clothes =* { echotags "Point not rendered" }
recycling:glass =* { echotags "Point not rendered" }
recycling:green_waste =* { echotags "Point not rendered" }
recycling:paper =* { echotags "Point not rendered" }
recycling:plastic =* { echotags "Point not rendered" }
recycling:waste =* { echotags "Point not rendered" }
recycling_type =* { echotags "Point not rendered" }
ref =* { echotags "Point not rendered" }
ref:enel:code =* { echotags "Point not rendered" }
ref:enel:serial_number =* { echotags "Point not rendered" }
ref:ISTAT =* { echotags "Point not rendered" }
ref:lotto =* { echotags "Point not rendered" }
ref:tobacco =* { echotags "Point not rendered" }
religion =* { echotags "Point not rendered" }
room =* { echotags "Point not rendered" }
ruin =* { echotags "Point not rendered" }
ruins =* { echotags "Point not rendered" }
school =* { echotags "Point not rendered" }
seamark:beacon_special_purpose:colour =* { echotags "Point not rendered" }
seamark:beacon_special_purpose:shape =* { echotags "Point not rendered" }
seamark:fixme =* { echotags "Point not rendered" }
seamark:harbour:category =* { echotags "Point not rendered" }
seamark:light:character =* { echotags "Point not rendered" }
seamark:light:colour =* { echotags "Point not rendered" }
seamark:light:period =* { echotags "Point not rendered" }
seamark:light:range =* { echotags "Point not rendered" }
seamark:light:ref =* { echotags "Point not rendered" }
seamark:longname =* { echotags "Point not rendered" }
seamark:name =* { echotags "Point not rendered" }
seamark:small_craft_facility:category =* { echotags "Point not rendered" }
seamark:type =* { echotags "Point not rendered" }
seats =* { echotags "Point not rendered" }
services =* { echotags "Point not rendered" }
shelter =* { echotags "Point not rendered" }
shelter_type =* { echotags "Point not rendered" }
shop =* { echotags "Point not rendered" }
short_name =* { echotags "Point not rendered" }
shower =* { echotags "Point not rendered" }
smoking =* { echotags "Point not rendered" }
sms =* { echotags "Point not rendered" }
source =* { echotags "Point not rendered" }
species =* { echotags "Point not rendered" }
species:it =* { echotags "Point not rendered" }
sport =* { echotags "Point not rendered" }
stars =* { echotags "Point not rendered" }
start_date =* { echotags "Point not rendered" }
summit:cross =* { echotags "Point not rendered" }
supervised =* { echotags "Point not rendered" }
tactile_paving =* { echotags "Point not rendered" }
tents =* { echotags "Point not rendered" }
toilets =* { echotags "Point not rendered" }
tourism =* { echotags "Point not rendered" }
tower:construction =* { echotags "Point not rendered" }
tower:type =* { echotags "Point not rendered" }
traffic_calming =* { echotags "Point not rendered" }
traffic_sign =* { echotags "Point not rendered" }
train =* { echotags "Point not rendered" }
type =* { echotags "Point not rendered" }
url =* { echotags "Point not rendered" }
vending =* { echotags "Point not rendered" }
video =* { echotags "Point not rendered" }
waste =* { echotags "Point not rendered" }
waterway =* { echotags "Point not rendered" }
website =* { echotags "Point not rendered" }

way / lines /polygons:

abandoned =* { echotags "Line not rendered" }
abandoned:highway =* { echotags "Line not rendered" }
access =* { echotags "Line not rendered" }
access:conditional =* { echotags "Line not rendered" }
addr:city =* { echotags "Line not rendered" }
addr:country =* { echotags "Line not rendered" }
addr:housename =* { echotags "Line not rendered" }
addr:housenumber =* { echotags "Line not rendered" }
addr:postcode =* { echotags "Line not rendered" }
addr:street =* { echotags "Line not rendered" }
admin_level =* { echotags "Line not rendered" }
aerialway =* { echotags "Line not rendered" }
aerialway:capacity =* { echotags "Line not rendered" }
aerialway:duration =* { echotags "Line not rendered" }
aerialway:occupancy =* { echotags "Line not rendered" }
aeroway =* { echotags "Line not rendered" }
agricultural =* { echotags "Line not rendered" }
agritourism =* { echotags "Line not rendered" }
alt_name =* { echotags "Line not rendered" }
alt_ref =* { echotags "Line not rendered" }
amenity =* { echotags "Line not rendered" }
animal_shelter =* { echotags "Line not rendered" }
animal_shelter:adoption =* { echotags "Line not rendered" }
area =* { echotags "Line not rendered" }
atm =* { echotags "Line not rendered" }
avalanche_protector:left =* { echotags "Line not rendered" }
avalanche_protector:right =* { echotags "Line not rendered" }
barbecue_grill =* { echotags "Line not rendered" }
barrier =* { echotags "Line not rendered" }
bicycle =* { echotags "Line not rendered" }
boat =* { echotags "Line not rendered" }
boundary =* { echotags "Line not rendered" }
brand =* { echotags "Line not rendered" }
bridge =* { echotags "Line not rendered" }
bridge:name =* { echotags "Line not rendered" }
building =* { echotags "Line not rendered" }
building:levels =* { echotags "Line not rendered" }
building:part =* { echotags "Line not rendered" }
bus =* { echotags "Line not rendered" }
cables =* { echotags "Line not rendered" }
capacity =* { echotags "Line not rendered" }
capacity:disabled =* { echotags "Line not rendered" }
capacity:parent =* { echotags "Line not rendered" }
capacity:women =* { echotags "Line not rendered" }
car_repair =* { echotags "Line not rendered" }
castle_type =* { echotags "Line not rendered" }
circumference =* { echotags "Line not rendered" }
city:left =* { echotags "Line not rendered" }
city:right =* { echotags "Line not rendered" }
closest_town =* { echotags "Line not rendered" }
community =* { echotags "Line not rendered" }
community:de =* { echotags "Line not rendered" }
community:en =* { echotags "Line not rendered" }
community:fr =* { echotags "Line not rendered" }
community:gender =* { echotags "Line not rendered" }
community:it =* { echotags "Line not rendered" }
construction =* { echotags "Line not rendered" }
covered =* { echotags "Line not rendered" }
created_by =* { echotags "Line not rendered" }
cuisine =* { echotags "Line not rendered" }
cutting =* { echotags "Line not rendered" }
cycleway =* { echotags "Line not rendered" }
cycleway:left =* { echotags "Line not rendered" }
cycleway:right =* { echotags "Line not rendered" }
denomination =* { echotags "Line not rendered" }
description =* { echotags "Line not rendered" }
designation =* { echotags "Line not rendered" }
destination =* { echotags "Line not rendered" }
dispensing =* { echotags "Line not rendered" }
disused =* { echotags "Line not rendered" }
disused:highway =* { echotags "Line not rendered" }
dog =* { echotags "Line not rendered" }
drinkable =* { echotags "Line not rendered" }
ele =* { echotags "Line not rendered" }
electrified =* { echotags "Line not rendered" }
email =* { echotags "Line not rendered" }
embankment =* { echotags "Line not rendered" }
emergency =* { echotags "Line not rendered" }
end_date =* { echotags "Line not rendered" }
escalator =* { echotags "Line not rendered" }
escalator_dir =* { echotags "Line not rendered" }
factory =* { echotags "Line not rendered" }
fax =* { echotags "Line not rendered" }
fee =* { echotags "Line not rendered" }
fence:material =* { echotags "Line not rendered" }
fence:type =* { echotags "Line not rendered" }
fence_type =* { echotags "Line not rendered" }
fireplace =* { echotags "Line not rendered" }
fixme =* { echotags "Line not rendered" }
fixme1 =* { echotags "Line not rendered" }
foot =* { echotags "Line not rendered" }
ford =* { echotags "Line not rendered" }
frequency =* { echotags "Line not rendered" }
fuel:biodiesel =* { echotags "Line not rendered" }
fuel:diesel =* { echotags "Line not rendered" }
fuel:lpg =* { echotags "Line not rendered" }
fuel:octane_100 =* { echotags "Line not rendered" }
fuel:octane_91 =* { echotags "Line not rendered" }
fuel:octane_95 =* { echotags "Line not rendered" }
fuel:octane_98 =* { echotags "Line not rendered" }
gauge =* { echotags "Line not rendered" }
generator:method =* { echotags "Line not rendered" }
generator:output:electricity =* { echotags "Line not rendered" }
generator:source =* { echotags "Line not rendered" }
generator:type =* { echotags "Line not rendered" }
goods =* { echotags "Line not rendered" }
handrail =* { echotags "Line not rendered" }
health_specialty =* { echotags "Line not rendered" }
height =* { echotags "Line not rendered" }
heritage =* { echotags "Line not rendered" }
heritage:operator =* { echotags "Line not rendered" }
hgv =* { echotags "Line not rendered" }
hgv:backward =* { echotags "Line not rendered" }
highway =* { echotags "Line not rendered" }
historic =* { echotags "Line not rendered" }
historic:civilization =* { echotags "Line not rendered" }
history =* { echotags "Line not rendered" }
holiday =* { echotags "Line not rendered" }
horse =* { echotags "Line not rendered" }
iata =* { echotags "Line not rendered" }
icao =* { echotags "Line not rendered" }
incline =* { echotags "Line not rendered" }
indoor =* { echotags "Line not rendered" }
industrial =* { echotags "Line not rendered" }
information =* { echotags "Line not rendered" }
int_name =* { echotags "Line not rendered" }
int_ref =* { echotags "Line not rendered" }
interchange =* { echotags "Line not rendered" }
internet_access =* { echotags "Line not rendered" }
internet_access:fee =* { echotags "Line not rendered" }
is_in:town =* { echotags "Line not rendered" }
junction =* { echotags "Line not rendered" }
lancover =* { echotags "Line not rendered" }
landcover =* { echotags "Line not rendered" }
landuse =* { echotags "Line not rendered" }
lanes =* { echotags "Line not rendered" }
layer =* { echotags "Line not rendered" }
leisure =* { echotags "Line not rendered" }
level =* { echotags "Line not rendered" }
lit =* { echotags "Line not rendered" }
loc_name =* { echotags "Line not rendered" }
loc_ref =* { echotags "Line not rendered" }
location =* { echotags "Line not rendered" }
man_made =* { echotags "Line not rendered" }
mattress =* { echotags "Line not rendered" }
maxheight =* { echotags "Line not rendered" }
maxspeed =* { echotags "Line not rendered" }
maxweight =* { echotags "Line not rendered" }
maxwidth =* { echotags "Line not rendered" }
military =* { echotags "Line not rendered" }
monument =* { echotags "Line not rendered" }
moped =* { echotags "Line not rendered" }
motor_vehicle =* { echotags "Line not rendered" }
motorcar =* { echotags "Line not rendered" }
motorcycle =* { echotags "Line not rendered" }
motorroad =* { echotags "Line not rendered" }
mtb:scale =* { echotags "Line not rendered" }
mtb:scale:uphill =* { echotags "Line not rendered" }
name =* { echotags "Line not rendered" }
name:ar =* { echotags "Line not rendered" }
name:fr =* { echotags "Line not rendered" }
name:it =* { echotags "Line not rendered" }
name:left =* { echotags "Line not rendered" }
name:right =* { echotags "Line not rendered" }
narrow =* { echotags "Line not rendered" }
nat_ref =* { echotags "Line not rendered" }
natural =* { echotags "Line not rendered" }
noexit =* { echotags "Line not rendered" }
note =* { echotags "Line not rendered" }
odbl =* { echotags "Line not rendered" }
old_name =* { echotags "Line not rendered" }
old_ref =* { echotags "Line not rendered" }
oneway =* { echotags "Line not rendered" }
oneway:bicycle =* { echotags "Line not rendered" }
oneway:conditional =* { echotags "Line not rendered" }
opening_hours =* { echotags "Line not rendered" }
operator =* { echotags "Line not rendered" }
orchard =* { echotags "Line not rendered" }
osmc:symbol =* { echotags "Line not rendered" }
park_ride =* { echotags "Line not rendered" }
parking =* { echotags "Line not rendered" }
parking:condition:both =* { echotags "Line not rendered" }
parking:condition:left =* { echotags "Line not rendered" }
parking:condition:right =* { echotags "Line not rendered" }
parking:lane:both =* { echotags "Line not rendered" }
parking:lane:left =* { echotags "Line not rendered" }
parking:lane:right =* { echotags "Line not rendered" }
passing_places =* { echotags "Line not rendered" }
phone =* { echotags "Line not rendered" }
piste:difficulty =* { echotags "Line not rendered" }
piste:type =* { echotags "Line not rendered" }
place =* { echotags "Line not rendered" }
plant:output:electricity =* { echotags "Line not rendered" }
power =* { echotags "Line not rendered" }
power_source =* { echotags "Line not rendered" }
power_supply =* { echotags "Line not rendered" }
produce =* { echotags "Line not rendered" }
protect_class =* { echotags "Line not rendered" }
protection_title =* { echotags "Line not rendered" }
province:left =* { echotags "Line not rendered" }
province:right =* { echotags "Line not rendered" }
psv =* { echotags "Line not rendered" }
public_transport =* { echotags "Line not rendered" }
railway =* { echotags "Line not rendered" }
recycling:batteries =* { echotags "Line not rendered" }
recycling:cans =* { echotags "Line not rendered" }
recycling:clothes =* { echotags "Line not rendered" }
recycling:glass =* { echotags "Line not rendered" }
recycling:paper =* { echotags "Line not rendered" }
recycling:scrap_metal =* { echotags "Line not rendered" }
recycling_type =* { echotags "Line not rendered" }
ref =* { echotags "Line not rendered" }
ref:catasto =* { echotags "Line not rendered" }
ref:whc =* { echotags "Line not rendered" }
reg_name =* { echotags "Line not rendered" }
reg_ref =* { echotags "Line not rendered" }
region:left =* { echotags "Line not rendered" }
region:right =* { echotags "Line not rendered" }
related_law =* { echotags "Line not rendered" }
religion =* { echotags "Line not rendered" }
reservoir_type =* { echotags "Line not rendered" }
rooms =* { echotags "Line not rendered" }
route =* { echotags "Line not rendered" }
ruin =* { echotags "Line not rendered" }
ruins =* { echotags "Line not rendered" }
sac_scale =* { echotags "Line not rendered" }
sac_scale_ref =* { echotags "Line not rendered" }
segregated =* { echotags "Line not rendered" }
service =* { echotags "Line not rendered" }
shelter_type =* { echotags "Line not rendered" }
shop =* { echotags "Line not rendered" }
sidewalk =* { echotags "Line not rendered" }
site_type =* { echotags "Line not rendered" }
ski =* { echotags "Line not rendered" }
smoking =* { echotags "Line not rendered" }
smoothness =* { echotags "Line not rendered" }
snowmobile =* { echotags "Line not rendered" }
soccer =* { echotags "Line not rendered" }
source =* { echotags "Line not rendered" }
source:maxspeed =* { echotags "Line not rendered" }
species =* { echotags "Line not rendered" }
species:en =* { echotags "Line not rendered" }
species:it =* { echotags "Line not rendered" }
sport =* { echotags "Line not rendered" }
stars =* { echotags "Line not rendered" }
start_date =* { echotags "Line not rendered" }
step_count =* { echotags "Line not rendered" }
supervised =* { echotags "Line not rendered" }
surface =* { echotags "Line not rendered" }
toll =* { echotags "Line not rendered" }
tourism =* { echotags "Line not rendered" }
tower:type =* { echotags "Line not rendered" }
tracktype =* { echotags "Line not rendered" }
trail_visibility =* { echotags "Line not rendered" }
trees =* { echotags "Line not rendered" }
tunnel =* { echotags "Line not rendered" }
tunnel:name =* { echotags "Line not rendered" }
two_sided =* { echotags "Line not rendered" }
type =* { echotags "Line not rendered" }
url =* { echotags "Line not rendered" }
usage =* { echotags "Line not rendered" }
vehicle =* { echotags "Line not rendered" }
visibility =* { echotags "Line not rendered" }
voltage =* { echotags "Line not rendered" }
wall =* { echotags "Line not rendered" }
water =* { echotags "Line not rendered" }
waterway =* { echotags "Line not rendered" }
website =* { echotags "Line not rendered" }
website:official =* { echotags "Line not rendered" }
whc:criteria =* { echotags "Line not rendered" }
whc:inscription_date =* { echotags "Line not rendered" }
wheelchair =* { echotags "Line not rendered" }
width =* { echotags "Line not rendered" }
wikipedia =* { echotags "Line not rendered" }
wires =* { echotags "Line not rendered" }
wood =* { echotags "Line not rendered" }

Inserendo il primo blocco di righe nel file points del proprio style (alla fine o prima della riga <finalize>finalize) e il secondo blocco sia nel file lines che nel polygons (in polygons cambiare "Line not rendered" con "Polygon not rendered") si ottiene qualcosa che assomiglia a:

68507533 - [place=village,mkgmap:boundary_name=Cannara,gfoss_id=4692,is_in=Perugia, Umbria, Italy,name=Cannara,population=3952,source=geodati.gfoss.it,cityxx=yes] Point not rendered
68507533 - [place=village,mkgmap:boundary_name=Cannara,gfoss_id=4692,is_in=Perugia, Umbria, Italy,name=Cannara,population=3952,source=geodati.gfoss.it,cityxx=yes] Point not rendered
68507533 - [place=village,mkgmap:boundary_name=Cannara,gfoss_id=4692,is_in=Perugia, Umbria, Italy,name=Cannara,population=3952,source=geodati.gfoss.it,cityxx=yes] Point not rendered
68507533 - [place=village,mkgmap:boundary_name=Cannara,gfoss_id=4692,is_in=Perugia, Umbria, Italy,name=Cannara,population=3952,source=geodati.gfoss.it,cityxx=yes] Point not rendered
68507533 - [place=village,mkgmap:boundary_name=Cannara,gfoss_id=4692,is_in=Perugia, Umbria, Italy,name=Cannara,population=3952,source=geodati.gfoss.it,cityxx=yes] Point not rendered
68507533 - [place=village,mkgmap:boundary_name=Cannara,gfoss_id=4692,is_in=Perugia, Umbria, Italy,name=Cannara,population=3952,source=geodati.gfoss.it,cityxx=yes] Point not rendered

27971895 - [name:left=Fano Adriano,mkgmap:boundary_name=Crognaleto:Fano Adriano,source=Based on ISTAT data - 2001 Italian Census,name:right=Crognaleto] Line not rendered
27971895 - [name:left=Fano Adriano,mkgmap:boundary_name=Crognaleto:Fano Adriano,source=Based on ISTAT data - 2001 Italian Census,name:right=Crognaleto] Line not rendered
27971895 - [name:left=Fano Adriano,mkgmap:boundary_name=Crognaleto:Fano Adriano,source=Based on ISTAT data - 2001 Italian Census,name:right=Crognaleto] Line not rendered
27971895 - [name:left=Fano Adriano,mkgmap:boundary_name=Crognaleto:Fano Adriano,source=Based on ISTAT data - 2001 Italian Census,name:right=Crognaleto] Polygon not rendered
27971895 - [name:left=Fano Adriano,mkgmap:boundary_name=Crognaleto:Fano Adriano,source=Based on ISTAT data - 2001 Italian Census,name:right=Crognaleto] Polygon not rendered
27971895 - [name:left=Fano Adriano,mkgmap:boundary_name=Crognaleto:Fano Adriano,source=Based on ISTAT data - 2001 Italian Census,name:right=Crognaleto] Polygon not rendered
107736808 - [natural=scrub] Line not rendered
240496200 - [building=yes] Line not rendered
158382895 - [addr:city=Frattoli,building=yes] Line not rendered
158382895 - [addr:city=Frattoli,building=yes] Line not rendered
158382900 - [addr:city=Frattoli,building=yes] Line not rendered
158382900 - [addr:city=Frattoli,building=yes] Line not rendered

che aiutano molto a capire come viene gestito il nostro style e quali elementi non vengono tradotti in mappa e come vengono tradotti.
</finalize>
 
  • Mi piace
Reactions: bis

Classifica mensile dislivello positivo