Skip to content

Releases: earthobservations/wetterdienst

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

v0.78.0

09 Mar 12:03
f5acb73
Compare
Choose a tag to compare

What's Changed

  • Docker: Install more extras
  • Cli/Restapi: Return empty values if no data is available by @gutzbenj in #1243

Full Changelog: v0.77.1...v0.78.0

v0.77.1

08 Mar 19:42
88cc67c
Compare
Choose a tag to compare

What's Changed

  • Fix setting NOAA GHCN-h date to UTC

Full Changelog: v0.77.0...v0.77.1

v0.77.0

08 Mar 19:03
65a44e9
Compare
Choose a tag to compare

What's Changed

  • Fix AsyncFileSystem monkeypatching breaking 3rd-party file systems by @provinzkraut in #1241
  • Refactor index caching -> Remove monkeypatch for fsspec by @gutzbenj in #1242

New Contributors

Full Changelog: v0.76.1...v0.77.0