ตราสัญลักษณ์ OpenStreetMap OpenStreetMap

บันทึกของ Rodrigo Rega

รายการบันทึกล่าสุด

Fixing routing errors from alternativaslibres faster

โพสต์โดย Rodrigo Rega เมื่อ 8 มกราคม 2017 ในภาษา English

I just writted a new post in my blog about fixing routing errors from alternativaslibres faster.

If you use this error reportings from alternativaslibres check it out!

Screencast importar edificios de Catastro a OpenStreetMap

โพสต์โดย Rodrigo Rega เมื่อ 8 สิงหาคม 2016 ในภาษา Spanish (Español)

[EN] This post is only in spanish, sorry.

Captura pantalla vídeo importación de Catastro

He publicado en mi perfil de Youtube un screencast en el que hago una importación de Catastro a OpenStreetMap. Al leer el procedimiento de importación oficial, parece una tarea complicada. Con este vídeo espero sacar un poco de hierro al asunto y que con ello se anime más gente a importar datos de Catastro de su localidad.

ที่ตั้ง: Lugo, Casco Vello, Lugo, Galicia, España

Getting streets and nodes without name tags with Overpass turbo

โพสต์โดย Rodrigo Rega เมื่อ 18 มีนาคม 2016 ในภาษา English อัปเดตล่าสุดเมื่อ 20 มีนาคม 2016

In my way into get better street tagging in Lugo city, I am using Overpass turbo to find what streets need to be tagged.

In a previous post I talk about getting parking lanes in highways in Overpass turbo, in this post I will show how I use Overpass turbo to get streets and POIs that are in need of some name:* tag.

In the next image we can see in blue what ways are in need of tagging, obtained with Overpass turbo: highways and nodes without name tags

For each way and node, I want to add this tags:

  • name:es=* (Name in spanish)
  • name:gl=* (Name in galician. This should be the same as “name=*”)
  • sorting_name=* (Same as “name=*”, but putting leading articles to the end)

This is the Overpass turbo query for getting streets without all street name tags that I want:

See full entry

ที่ตั้ง: Lugo, Casco Vello, Lugo, Galicia, Spain

Getting highways without parking lanes tag with Overpass turbo

โพสต์โดย Rodrigo Rega เมื่อ 14 มีนาคม 2016 ในภาษา English อัปเดตล่าสุดเมื่อ 18 มีนาคม 2016

I am working in add parking lanes in the highways of Lugo city. For ease the job of locating all the ways that are without the needed tags, I wrote a little Overpass turbo query, after this I load the data it in JOSM to do the tagging.

highways without parking lanes tag

This is the Overpass query:

[out:xml][timeout:25];

// filter out ways without right or left parking lanes
(
way["highway"]["parking:lane:left"!~".*"]({{bbox}});
way["highway"]["parking:lane:right"!~".*"]({{bbox}});
);

// filter out ways with both parking lanes
( ._; - way["highway"]["parking:lane:both"~".*"]({{bbox}}); );

// filter out other type of ways 
( ._; - way[highway="pedestrian"]({{bbox}}); );
( ._; - way[highway="footway"]({{bbox}}); );
( ._; - way[highway="path"]({{bbox}}); );
( ._; - way[highway="steps"]({{bbox}}); );
( ._; - way[highway="crossing"]({{bbox}}); );
( ._; - way[service="parking_aisle"]({{bbox}}); );

// print results
out meta;
>;
out meta qt;
ที่ตั้ง: Lugo, Casco Vello, Lugo, Galicia, Spain