Update README.md
Browse files
README.md
CHANGED
@@ -15,9 +15,8 @@ Data is retrieved from [Corpernicus Climate Data Store](https://cds.climate.cope
|
|
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 |
- Data Granularity: Hourly per Latitude/ Longitude
|
18 |
-
- Period: **
|
19 |
-
- Temperature Unit: Kelvin
|
20 |
-
|
21 |
|
22 |
# Source Data
|
23 |
- Organization of the producer: ECMWF
|
@@ -53,8 +52,8 @@ for year in year_list:
|
|
53 |
},
|
54 |
f'{year}_{month}_hourly_2m_temp_TH.grib')
|
55 |
```
|
56 |
-
Direct file output from API is in ```.grib``` format, to make it easy for
|
57 |
-
To convert GRIB format to pandas
|
58 |
|
59 |
``` python
|
60 |
import xarray as xr
|
@@ -65,15 +64,18 @@ df = ds.to_dataframe().reset_index()
|
|
65 |
|
66 |
```
|
67 |
|
|
|
|
|
|
|
68 |
## Licensing
|
69 |
[Climate Data Store Product Licensing](https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf)
|
70 |
|
71 |
## Citation
|
72 |
- This data was generated using **Copernicus Climate Change Service** information and <br/>
|
73 |
-
contains modified **Copernicus Climate Change Service** information on
|
74 |
|
75 |
- Muñoz Sabater, J. (2019): ERA5-Land hourly data from 1950 to present. <br/>
|
76 |
-
|
77 |
DOI: [10.24381/cds.e2161bac](https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview) (Accessed on 13-May-2023)
|
78 |
|
79 |
- Copernicus Climate Change Service (C3S) (2022): ERA5-Land hourly data from 1950 to present. <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 |
- Data Granularity: Hourly per Latitude/ Longitude
|
18 |
+
- Period: **31/Dec/1999** - **08/May/2023**
|
19 |
+
- Temperature Unit: Celsius (°C) (Original data from [ERA5-Land hourly data from 1950 to present](https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview) is Kelvin)
|
|
|
20 |
|
21 |
# Source Data
|
22 |
- Organization of the producer: ECMWF
|
|
|
52 |
},
|
53 |
f'{year}_{month}_hourly_2m_temp_TH.grib')
|
54 |
```
|
55 |
+
Direct file output from API is in ```.grib``` format, to make it easy for further analysis work, I have converted it to ```.parquet``` format. <br/>
|
56 |
+
To convert GRIB format to pandas dataframe, you can use [xrray](https://github.com/pydata/xarray) and [cfgrib](https://github.com/ecmwf/cfgrib) library to help as below example snippet of code.
|
57 |
|
58 |
``` python
|
59 |
import xarray as xr
|
|
|
64 |
|
65 |
```
|
66 |
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
## Licensing
|
71 |
[Climate Data Store Product Licensing](https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf)
|
72 |
|
73 |
## Citation
|
74 |
- This data was generated using **Copernicus Climate Change Service** information and <br/>
|
75 |
+
contains modified **Copernicus Climate Change Service** information on 1999/Dec/31 - 2023/May/08 data period
|
76 |
|
77 |
- Muñoz Sabater, J. (2019): ERA5-Land hourly data from 1950 to present. <br/>
|
78 |
+
Copernicus Climate Change Service (C3S) Climate Data Store (CDS). <br/>
|
79 |
DOI: [10.24381/cds.e2161bac](https://cds.climate.copernicus.eu/cdsapp#!/dataset/10.24381/cds.e2161bac?tab=overview) (Accessed on 13-May-2023)
|
80 |
|
81 |
- Copernicus Climate Change Service (C3S) (2022): ERA5-Land hourly data from 1950 to present. <br/>
|