home / plants

climate_data

Average monthly temperature per region.

12 rows where region_id = "CH01"

✎ View and edit SQL

This data as json, CSV (advanced)

Link region_id month avg_temp
CH01,1 Région lémanique CH01 1 -7.72
CH01,2 Région lémanique CH01 2 -6.1
CH01,3 Région lémanique CH01 3 -2.04
CH01,4 Région lémanique CH01 4 1.55
CH01,5 Région lémanique CH01 5 5.93
CH01,6 Région lémanique CH01 6 10.58
CH01,7 Région lémanique CH01 7 12.82
CH01,8 Région lémanique CH01 8 12.76
CH01,9 Région lémanique CH01 9 8.69
CH01,10 Région lémanique CH01 10 4.29
CH01,11 Région lémanique CH01 11 -2.47
CH01,12 Région lémanique CH01 12 -6.99

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