home / plants

climate_data

Average monthly temperature per region.

12 rows where region_id = "DE23"

✎ View and edit SQL

This data as json, CSV (advanced)

Link region_id month avg_temp
DE23,1 Oberpfalz DE23 1 -0.34
DE23,2 Oberpfalz DE23 2 0.54
DE23,3 Oberpfalz DE23 3 4.35
DE23,4 Oberpfalz DE23 4 9.06
DE23,5 Oberpfalz DE23 5 13.59
DE23,6 Oberpfalz DE23 6 16.99
DE23,7 Oberpfalz DE23 7 18.87
DE23,8 Oberpfalz DE23 8 18.69
DE23,9 Oberpfalz DE23 9 14.16
DE23,10 Oberpfalz DE23 10 9.29
DE23,11 Oberpfalz DE23 11 4.12
DE23,12 Oberpfalz DE23 12 0.68

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE climate_data (
    region_id TEXT,
    month INTEGER,
    avg_temp REAL,
    PRIMARY KEY (region_id, month),
    FOREIGN KEY (region_id) REFERENCES regions(id)
  );
Powered by Datasette · Queries took 28.192ms