home / plants

climate_data

Average monthly temperature per region.

12 rows where region_id = "CH06"

✎ View and edit SQL

This data as json, CSV (advanced)

Link region_id month avg_temp
CH06,1 Zentralschweiz CH06 1 1.75
CH06,2 Zentralschweiz CH06 2 1.95
CH06,3 Zentralschweiz CH06 3 5.08
CH06,4 Zentralschweiz CH06 4 8.43
CH06,5 Zentralschweiz CH06 5 12.8
CH06,6 Zentralschweiz CH06 6 16.78
CH06,7 Zentralschweiz CH06 7 18.84
CH06,8 Zentralschweiz CH06 8 18.95
CH06,9 Zentralschweiz CH06 9 15.15
CH06,10 Zentralschweiz CH06 10 11.25
CH06,11 Zentralschweiz CH06 11 6.04
CH06,12 Zentralschweiz CH06 12 2.72

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 17.293ms