-
Notifications
You must be signed in to change notification settings - Fork 69
Labels
new datasetQuestions regarding usage or functionalityQuestions regarding usage or functionality
Description
Some non EU countries are harder to find consistent data for. Could OSM be added for these countries as a source? Not all generators have names, but some do have names and capacities.
A quick example for Turkey with the Overpass-turbo API: https://overpass-turbo.eu/#
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“power=plant in Turkey”
*/
[out:json][timeout:110];
// fetch area “Turkey” to search in
{{geocodeArea:Turkey}}->.searchArea;
// gather results
(
// query part for: “power=plant”
node["power"="plant"](area.searchArea);
way["power"="plant"](area.searchArea);
relation["power"="plant"](area.searchArea);
node["power"="generator"](area.searchArea);
way["power"="generator"](area.searchArea);
relation["power"="generator"](area.searchArea);
);
// print results
out body;
>;
out skel qt;
Metadata
Metadata
Assignees
Labels
new datasetQuestions regarding usage or functionalityQuestions regarding usage or functionality