Skip to content

Releases: earthobservations/wetterdienst

v0.87.0

06 Jun 22:22
05283a6
Compare
Choose a tag to compare

What's Changed

  • Rename warming stripes to climate stripes and add precipitation version by @gutzbenj in #1303
  • Replace custom Settings class with pydantic model by @gutzbenj in #1304

Full Changelog: v0.86.0...v0.87.0

v0.86.0

01 Jun 07:40
f84c320
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.85.0...v0.86.0

v0.85.0

29 May 17:07
273f58c
Compare
Choose a tag to compare

What's Changed

  • Add example for duckdb dump by @gutzbenj in #1299
  • Fix dropna argument for DWD Mosmix and DMO by @gutzbenj
  • Adjust DWD Mosmix and DMO kml reader to parse all parameters by @gutzbenj
  • Fix to_target(duckdb) for stations by @gutzbenj
  • Fix init of DwdDmoRequest by @gutzbenj

Full Changelog: v0.84.0...v0.85.0

DWD OBS DAILY CLIMATE SUMMARY DUCKDB DUMP 2024_05_20

20 May 18:10
c81b360
Compare
Choose a tag to compare

Overview

This is a complete dump of the DWD Observation Daily Climate Summary dataset in one duckdb file. Query it and find out about Germany's climatological history including highs, lows, extremes etc of all parameters.

List of parameters:

  • CLOUD_COVER_TOTAL
  • HUMIDITY
  • PRECIPITATION_FORM
  • PRECIPITATION_HEIGHT
  • PRESSURE_AIR_SITE
  • PRESSURE_VAPOR
  • SNOW_DEPTH
  • SUNSHINE_DURATION
  • TEMPERATURE_AIR_MAX_200
  • TEMPERATURE_AIR_MEAN_200
  • TEMPERATURE_AIR_MIN_005
  • TEMPERATURE_AIR_MIN_200
  • WIND_GUST_MAX
  • WIND_SPEED

How to use

import duckdb

FILE = "dwd_obs_daily_climate_summary.duckdb"
con = duckdb.connect(FILE)
# stations
print(con.execute("SELECT * FROM stations LIMIT 1000"))
# values
print(con.execute("SELECT * FROM values LIMIT 1000"))
# or get a polars dataframe
print(con.execute("SELECT * FROM values LIMIT 1000").pl())

v0.84.0

15 May 21:15
d01b060
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.83.0...v0.84.0

v0.83.0

26 Apr 17:14
35d3609
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.82.0...v0.83.0

v0.82.0

25 Apr 21:08
e1bafe8
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.81.0...v0.82.0

v0.81.0

09 Apr 20:10
96c4211
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.80.0...v0.81.0

v0.80.0

07 Apr 22:47
f4d1daf
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.79.0...v0.80.0

v0.79.0

21 Mar 22:46
2878d4e
Compare
Choose a tag to compare

What's Changed

  • Add multiple lint rules by @gutzbenj in #1245
  • Set target-version of ruff to py39 by @gutzbenj in #1252
  • Fix parsing of DWD Observation stations where name contains a comma

Full Changelog: v0.78.0...v0.79.0