This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Getting all offshore wind-turbines farms

0

Hello,

I would like to have all the turbines of all offshore wind-farms in the world,

I have tried these but a lot are still missing:

/*
This query looks for nodes, ways and relations 
with the given key/value combination.
Choose your region and hit the Run button above!
*/
[out:json][timeout:25];
// gather results
(
  // query part for: “"generator:source"=wind”
  node["generator:source"="wind"]({{bbox}});
  way["generator:source"="wind"]({{bbox}});
  relation["generator:source"="wind"]({{bbox}});
);
// print results
out body;
>;
out skel qt;

but a lot are still missing

Any help would be more than welcome

R

asked 09 Dec '22, 14:40

Lamri19's gravatar image

Lamri19
11112
accept rate: 0%

edited 09 Dec '22, 15:04

SomeoneElse's gravatar image

SomeoneElse ♦
36.9k71370866

Source code available on GitHub .