home / plants

climate_data

Average monthly temperature per region.

12 rows where region_id = "EE00"

✎ View and edit SQL

This data as json, CSV (advanced)

Link region_id month avg_temp
EE00,1 Eesti EE00 1 -4.22
EE00,2 Eesti EE00 2 -4.79
EE00,3 Eesti EE00 3 -1.29
EE00,4 Eesti EE00 4 5.03
EE00,5 Eesti EE00 5 11.04
EE00,6 Eesti EE00 6 15.28
EE00,7 Eesti EE00 7 17.95
EE00,8 Eesti EE00 8 16.67
EE00,9 Eesti EE00 9 11.91
EE00,10 Eesti EE00 10 6.0
EE00,11 Eesti EE00 11 1.2
EE00,12 Eesti EE00 12 -2.13

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