Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -49,7 +49,29 @@ Usage beyond academic research, weather prediction, and climate modeling—such
|
|
49 |
|
50 |
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
|
51 |
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
## Dataset Creation
|
55 |
|
@@ -86,8 +108,6 @@ The `WeatherDataFetcher` class is designed to programmatically collect and proce
|
|
86 |
- **Pandas:** For data manipulation and normalization.
|
87 |
- **Datetime:** For handling dates and timestamps.
|
88 |
|
89 |
-
#### Who are the source data producers?
|
90 |
-
|
91 |
<!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
|
92 |
|
93 |
|
|
|
49 |
|
50 |
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
|
51 |
|
52 |
+
This dataset provides comprehensive weather information collected from OpenWeatherMap, structured into a tabular format. Each row in the dataset represents weather data for a specific hour, including various atmospheric measurements and conditions. Below is a description of the dataset fields:
|
53 |
+
|
54 |
+
- **dt:** Unix timestamp indicating the time of the weather data.
|
55 |
+
- **main.temp:** The temperature at the specified hour, measured in Kelvin.
|
56 |
+
- **main.feels_like:** The human-perceived temperature, taking humidity and wind into account, measured in Kelvin.
|
57 |
+
- **main.pressure:** Atmospheric pressure at sea level, measured in hPa (hectopascal).
|
58 |
+
- **main.humidity:** Humidity percentage at the specified hour.
|
59 |
+
- **main.temp_min:** Minimum temperature within the last hour, measured in Kelvin.
|
60 |
+
- **main.temp_max:** Maximum temperature within the last hour, measured in Kelvin.
|
61 |
+
- **wind.speed:** Wind speed at the specified hour, measured in m/s (meters per second).
|
62 |
+
- **wind.deg:** Wind direction in degrees (meteorological).
|
63 |
+
- **wind.gust:** Wind gust speed at the specified hour, measured in m/s.
|
64 |
+
- **clouds.all:** Cloudiness percentage at the specified hour.
|
65 |
+
- **latitude and longitude:** Geographic coordinates of the location where the weather data was collected.
|
66 |
+
- **date:** Date (YYYY-MM-DD) corresponding to the weather data.
|
67 |
+
- **rain.1h (nullable):** Rain volume for the last hour, measured in mm (millimeters). This field is nullable to account for periods without rainfall.
|
68 |
+
- **weather_id:** Weather condition ID, corresponding to OpenWeatherMap's weather condition codes.
|
69 |
+
- **weather_main:** General weather condition category (e.g., Rain, Clear, Clouds).
|
70 |
+
- **weather_description:** More detailed description of the weather condition.
|
71 |
+
- **weather_icon:** Icon code representing the weather condition visually.
|
72 |
+
- **city:** The name of the city for which the weather data is provided.
|
73 |
+
- **snow.1h (nullable):** Snow volume for the last hour, measured in mm. Similar to rain.1h, this field is nullable.
|
74 |
+
- **rain.3h (nullable):** Rain volume for the last three hours, provided for datasets with a wider temporal aggregation.
|
75 |
|
76 |
## Dataset Creation
|
77 |
|
|
|
108 |
- **Pandas:** For data manipulation and normalization.
|
109 |
- **Datetime:** For handling dates and timestamps.
|
110 |
|
|
|
|
|
111 |
<!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
|
112 |
|
113 |
|