Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,64 @@
|
|
1 |
---
|
2 |
license: eupl-1.1
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: eupl-1.1
|
3 |
+
task_categories:
|
4 |
+
- time-series-forecasting
|
5 |
+
tags:
|
6 |
+
- climate
|
7 |
+
size_categories:
|
8 |
+
- 100M<n<1B
|
9 |
---
|
10 |
+
|
11 |
+
# Dataset Summary
|
12 |
+
Contains hourly 2 meters air temperature data within grid areas of Thailand country. <br/>
|
13 |
+
Data is retrived from [Corpernicus Climate Data Store](https://cds.climate.copernicus.eu/cdsapp#!/home) on [ERA5-Land hourly data from 1950 to present](https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview)
|
14 |
+
<br/>
|
15 |
+
Thailand areas in this context is **Latitude** = **[5.77434, 20.43353]** and **Longitude** = **[97.96852, 105.22908]** <br/>
|
16 |
+
For more details of data, you can refer to [ERA5-Land hourly data from 1950 to present](https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-land?tab=overview))
|
17 |
+
|
18 |
+
# Source Data
|
19 |
+
- Organization of the producer : ECMWF
|
20 |
+
|
21 |
+
# Data Creation
|
22 |
+
Below is how to make data query using python via [CDS API](https://cds.climate.copernicus.eu/api-how-to). <br/>
|
23 |
+
|
24 |
+
``` python
|
25 |
+
import cdsapi
|
26 |
+
c = cdsapi.Client()
|
27 |
+
|
28 |
+
month_list = [str(num).zfill(2) for num in range(1, 13)]
|
29 |
+
day_list = [str(num).zfill(2) for num in range(1, 32)]
|
30 |
+
time_list = [str(num).zfill(2) + ":00" for num in range(0, 24)]
|
31 |
+
year_list = [str(num) for num in range(2000, 2022)]
|
32 |
+
|
33 |
+
for year in year_list:
|
34 |
+
for month in month_list:
|
35 |
+
c.retrieve('reanalysis-era5-land',
|
36 |
+
{
|
37 |
+
'variable': [
|
38 |
+
'2m_temperature']
|
39 |
+
,
|
40 |
+
'year': year,
|
41 |
+
'month' : month,
|
42 |
+
'day': day_list,
|
43 |
+
'time': time_list,
|
44 |
+
'format': 'grib',
|
45 |
+
'area': [
|
46 |
+
20.43, 97.96, 5.77,
|
47 |
+
105.22,
|
48 |
+
],
|
49 |
+
},
|
50 |
+
f'{year}_{month}_hourly_2m_temp_TH.grib')
|
51 |
+
```
|
52 |
+
|
53 |
+
## Licensing
|
54 |
+
[Climate Data Store Product Licensing](https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf)
|
55 |
+
|
56 |
+
## Citation
|
57 |
+
- This data was generated using **Copernicus Climate Change Service** information and contains modified **Copernicus Climate Change Service** information <br/>
|
58 |
+
on 2020/Jan/01 - 2023/May/13 data period
|
59 |
+
|
60 |
+
- Muñoz Sabater, J. (2019): ERA5-Land hourly data from 1950 to present. <br/>
|
61 |
+
Copernicus Climate Change Service (C3S) Climate Data Store (CDS). DOI: [10.24381/cds.e2161bac](https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview) (Accessed on 13-May-2023)
|
62 |
+
|
63 |
+
- Copernicus Climate Change Service (C3S) (2022): ERA5-Land hourly data from 1950 to present. <br/>
|
64 |
+
Copernicus Climate Change Service (C3S) Climate Data Store (CDS). DOI: [10.24381/cds.e2161bac](https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview) (Accessed on 13-May-2023)
|