Keywords: wind-speed COSMO-REA6 NEWA Germany neweuropeanwindatlas reanalysis open-data python
I'm interested in windspeeds at 175m, the turbine height of many new wind turbines in Germany, Two sources of windspeed data in EUrope are
- https://opendata.DWD.de/.../COSMO_REA6: hourly, 1995 to 2018, 6 x 6 km grid
- NEWA, the New European Wind Atlas, 3 x 3 km grid.
What are good places to compare the two ? There are 8000-odd new windmills in Germany, running since 2024 or planned, under Marktstammdatenregister Gesamtdatenexport_20260101. Comparing at these sites is more interesting than looking everywhere -- importance weighting.
Experts will probably say "of course, dummy, everybody knows that". Is there a 0-order explanation ? Spotchecks of measured windspeeds at ~ 175m would be useful.
If anyone's interested, I can supply .csv file with NEWA and COSMO-REA7 windspeedslike this:
Newawind175 Cosmowind175 Cosmocap175 State Lat Lon AGS Lkr Place
9.73 10.58 67.6 SH 54.4777 8.42394 1054 Nordfriesland Galmsbüll
...
5.02 3.57 13.2 BW 48.0106 7.90246 8311 Freiburg_im_Breisgau Freiburg
Here Newawind175 is just the average of NEWA average windspeeds at 150m and 200m.
Wind data is extracted with homemade Python code (which is not to everyone's taste). I found it useful to
- subset big .nc files early (numpy .npz is good)
- map sites ──> the nearest Cosmo and NEWA grid points with KDtree
- little functions with print statements and type / shape annotations
- avoid software towers:
cheers
— denis-bz-py t-online.de 2026-02-20 Feb
The purpose of computing is insight, not numbers.
