About Me / Acerca de mi
German C (on osm, edits, contrib, heatmap, chngset com.)
|
This user submits data to OpenStreetMap under the name German C.
|
|
German C uses Overpass turbo, an OSM database search tool, and is willing to advise on it
|
|
German C submits data to OpenStreetMap using iD.
|
|
German C submits data to OpenStreetMap using Vespucci.
|
|
German C uses OsmAnd, mobile map viewing & navigation app.
|
|
German C uses Leaflet, a JavaScript library for interactive maps.
|
|
German C uses MapLibre GL JS, a JavaScript library for interactive maps.
|
Weekly Challenges / Retos Semanales
Choose a town (or little city) near to you or you can visit. Read in Spanish..
Week 1 / Semana Uno
Challenge: Add 4 houses as area . Read in Spanish..
How:
Validation: Go to https://overpass-turbo.eu/ or https://overpass-ultra.us/ locate your focus area and do zoom, copy and paste the next script, change the name "German C" by your name, change the date 2023-10-31 to your actual date, clic in Run, and it show your solved challenge. Read in Spanish.
Overpass-turbo |
Overpass-ultra
|
[out:json][timeout:25];
way[building=house](user:"German C")(newer:"2023-10-31T14:45:59Z")({{bbox}});
out geom;
|
---
style:
layers:
- type: fill
filter: [ ==, [ get, building ], house ]
paint:
fill-color: pink
fill-outline-color: red
---
[bbox:{{bbox}}];
(
way[building=house](user:"German C")(newer:"2015-10-31T14:45:59Z");
);
out geom;
|
Week 2 / Semana Dos
Challenge: Add 4 tree as node . Read in Spanish..
How:
Validation: Go to https://overpass-turbo.eu/ or https://overpass-ultra.us/ locate your focus area and do zoom, copy and paste the next script, change the name "German C" by your name, change the date 2019-10-31 to your actual date, clic in Run, and it show your solved challenge. Read in Spanish.
Overpass-turbo |
Overpass-ultra
|
[out:json][timeout:25];
node[natural=tree](user:"German C")(newer:"2019-10-31T14:45:59Z")({{bbox}});
out geom;
|
---
style:
layers:
- type: symbol
filter: [ ==, [ get, natural ], tree ]
icon-image: maki:park
icon-color: green
icon-halo-color: darkgreen
icon-halo-width: 5
---
[bbox:{{bbox}}];
(
node[natural=tree](user:"German C")(newer:"2023-05-31T14:45:59Z");
);
out geom;
|
Week 3 / Semana Tres
Challenge: Add 4 power pole as node . Read in Spanish..
How:
Validation: Go to https://overpass-turbo.eu/ or https://overpass-ultra.us/ locate your focus area and do zoom, copy and paste the next script, change the name "German C" by your name, change the date 2019-10-31 to your actual date, clic in Run, and it show your solved challenge. Read in Spanish.
Overpass-turbo |
Overpass-ultra
|
[out:json][timeout:25];
node[power=pole](user:"German C")(newer:"2024-10-31T14:45:59Z")({{bbox}});
out geom;
|
---
style:
layers:
- type: symbol
filter: [ ==, [ get, power ], pole ]
icon-image: temaki:power_pole
icon-color: yellow
icon-halo-color: brown
icon-halo-width: 1
---
[bbox:{{bbox}}];
(
node[power=pole](user:"German C")(newer:"2019-05-31T14:45:59Z");
);
out geom;
|
Week 4 / Semana Cuatro
Challenge: Add 4 little forest as area . Read in Spanish..
How:
Validation: Go to https://overpass-turbo.eu/ or https://overpass-ultra.us/ locate your focus area and do zoom, copy and paste the next script, change the name "German C" by your name, change the date 2019-10-31 to your actual date, clic in Run, and it show your solved challenge. Read in Spanish.
Overpass-turbo |
Overpass-ultra
|
[out:json][timeout:25];
way[landuse=forest](user:"German C")(newer:"2024-10-31T14:45:59Z")({{bbox}});
out geom;
|
---
style:
layers:
- type: fill
filter: [ ==, [ get, landuse ], forest ]
paint:
fill-color: pink
fill-outline-color: red
---
[bbox:{{bbox}}];
(
way[landuse=forest](user:"German C")(newer:"2024-10-31T14:45:59Z");
);
out geom;
|