Xu Zhijian commited on
Commit
c2786b1
·
1 Parent(s): 034414b

init commit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +120 -0
  2. id_info.json +67 -0
  3. id_info_except_battery.json +67 -0
  4. raw_data/all_channel_imputed/co2.parquet +3 -0
  5. raw_data/all_channel_imputed/demand.parquet +3 -0
  6. raw_data/all_channel_imputed/fuelsource.parquet +3 -0
  7. raw_data/all_channel_raw/raw_co2.parquet +3 -0
  8. raw_data/all_channel_raw/raw_demand.parquet +3 -0
  9. raw_data/all_channel_raw/raw_fuelsource.parquet +3 -0
  10. scripts/clean_and_impute.py +173 -0
  11. scripts/embed.py +133 -0
  12. scripts/embed_static.py +107 -0
  13. scripts/merge_all_channel.py +88 -0
  14. scripts/merge_embed.py +100 -0
  15. static_info.json +29 -0
  16. static_info_embeddings_except_battery.pkl +3 -0
  17. static_info_except_battery.json +28 -0
  18. time_series/all.parquet +3 -0
  19. time_series/all_except_battery.parquet +3 -0
  20. time_series/id_info.json +67 -0
  21. time_series/id_info_except_battery.json +67 -0
  22. weather/merged_report_embedding/fast_general_formal_embeddings_2018.pkl +3 -0
  23. weather/merged_report_embedding/fast_general_formal_embeddings_2019.pkl +3 -0
  24. weather/merged_report_embedding/fast_general_formal_embeddings_2020.pkl +3 -0
  25. weather/merged_report_embedding/fast_general_formal_embeddings_2021.pkl +3 -0
  26. weather/merged_report_embedding/fast_general_formal_embeddings_2022.pkl +3 -0
  27. weather/merged_report_embedding/fast_general_formal_embeddings_2023.pkl +3 -0
  28. weather/merged_report_embedding/fast_general_formal_embeddings_2024.pkl +3 -0
  29. weather/merged_report_embedding/fast_general_formal_embeddings_2025.pkl +3 -0
  30. weather/merged_report_embedding/static_info_embeddings_except_battery.pkl +3 -0
  31. weather/san-diego/raw_data/daily_weather_2018.csv +1460 -0
  32. weather/san-diego/raw_data/daily_weather_2019.csv +1461 -0
  33. weather/san-diego/raw_data/daily_weather_2020.csv +1465 -0
  34. weather/san-diego/raw_data/daily_weather_2021.csv +1461 -0
  35. weather/san-diego/raw_data/daily_weather_2022.csv +1461 -0
  36. weather/san-diego/raw_data/daily_weather_2023.csv +1460 -0
  37. weather/san-diego/raw_data/daily_weather_2024.csv +1465 -0
  38. weather/san-diego/raw_data/daily_weather_2025.csv +792 -0
  39. weather/san-diego/raw_data/daily_weather_raw_2018.json +0 -0
  40. weather/san-diego/raw_data/daily_weather_raw_2019.json +0 -0
  41. weather/san-diego/raw_data/daily_weather_raw_2020.json +0 -0
  42. weather/san-diego/raw_data/daily_weather_raw_2021.json +0 -0
  43. weather/san-diego/raw_data/daily_weather_raw_2022.json +0 -0
  44. weather/san-diego/raw_data/daily_weather_raw_2023.json +0 -0
  45. weather/san-diego/raw_data/daily_weather_raw_2024.json +0 -0
  46. weather/san-diego/raw_data/daily_weather_raw_2025.json +0 -0
  47. weather/san-diego/raw_data/hourly_weather_raw_2018.csv +0 -0
  48. weather/san-diego/raw_data/hourly_weather_raw_2019.csv +0 -0
  49. weather/san-diego/raw_data/hourly_weather_raw_2020.csv +0 -0
  50. weather/san-diego/raw_data/hourly_weather_raw_2021.csv +0 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - time-series-forecasting
4
+ language:
5
+ - en
6
+ tags:
7
+ - TimeSeries,
8
+ - Multimodal,
9
+ - Heterogeneous
10
+ size_categories:
11
+ - 1B<n<10B
12
+ ---
13
+ # WIATS: Weather-centric Intervention-Aware Time Series Multimodal Dataset
14
+
15
+ ## Data source:
16
+
17
+ - [California ISO](https://www.caiso.com/todays-outlook)
18
+
19
+ ## Dataset Structure
20
+
21
+ The dataset is organized into the following structure:
22
+
23
+ ```
24
+ |-- subdataset1
25
+
26
+ | |-- raw_data # Original data files
27
+ | |-- time_series # Rule-based Imputed data files
28
+ | | |-- id_1.parquet # Time series data for each subject can be multivariate, can be in csv, parquet, etc.
29
+ | | |-- id_2.parquet
30
+ | | |-- ...
31
+ | | |-- id_info.json # Metadata for each subject
32
+
33
+ | |-- weather
34
+ | | |-- location_1
35
+ | | | |-- raw_data
36
+ | | | | |-- daily_weather_raw_????.json
37
+ | | | | |-- ...
38
+ | | | | |-- daily_weather_????.csv
39
+ | | | | |-- ...
40
+ | | | | |-- hourly_weather_????.csv
41
+ | | | | |-- ...
42
+ | | | |-- weather_report (can be flattened and use regex to extract the version)
43
+ | | | | |-- version_1
44
+ | | | | | |-- weather_report_????.json
45
+ | | | | | |-- ...
46
+ | | | | |-- version_2
47
+ | | | | |-- ...
48
+ | | | |-- report_embedding # embedding for the weather report
49
+ | | | | |-- version_1
50
+ | | | | | |-- report_embedding_????.pkl
51
+ | | | | | |-- ...
52
+ | | | | |-- version_2
53
+ | | | | |-- ...
54
+
55
+ | | |-- location_2
56
+ | | |-- ...
57
+
58
+ | | |-- merged_report_embedding # merged embedding for multiple needed locations (optional)
59
+ | | | |-- version_1
60
+ | | | | |-- report_embedding_????.pkl
61
+ | | | | |-- ...
62
+ | | | |-- version_2
63
+ | | | |-- ...
64
+
65
+ | |-- scripts # Scripts for data processing, model training, and evaluation
66
+ | |-- id_info.json # Metadata for whole dataset without preprocessing
67
+ | |-- static_info.json # Static information for this dataset, including the dataset information, channel information, downtime reasons.
68
+ | |-- static_info_embeddings.pkl
69
+
70
+ | |-- slim_data (optional)
71
+ | |-- full_data (optional) # intermediate data during the data processing
72
+
73
+ |-- subdataset2
74
+ |-- ......
75
+
76
+ ```
77
+
78
+ ## id_info.json Structure
79
+
80
+ The `id_info.json` file contains metadata for each subject in the dataset. Extracted from the raw dataset. The structure is as follows:
81
+
82
+ ```json
83
+ {
84
+ "id_1": {
85
+ "len": 1000, # Length of the time series data
86
+ "sensor_downtime": {
87
+ 1: {
88
+ "time": [yyyy-mm-dd hh:mm:ss, yyyy-mm-dd hh:mm:ss],
89
+ "index": [start_index, end_index]
90
+ },
91
+ 2: {
92
+ "time": [yyyy-mm-dd hh:mm:ss, yyyy-mm-dd hh:mm:ss],
93
+ "index": [start_index, end_index]
94
+ },
95
+ ...
96
+ },
97
+ "other_info_1": "value_1", # Other information about the subject customizable entry
98
+ "other_info_2": "value_2",
99
+ ...
100
+ },
101
+ "id_2": ...
102
+
103
+ }
104
+ ```
105
+
106
+ ## static_info.json Structure
107
+
108
+ The `static_info.json` file contains static information for the whole dataset. The structure is as follows:
109
+
110
+ ```json
111
+ {
112
+ "general_info": "description of the dataset",
113
+ "downtime_prompt": "",
114
+ "channel_info": {
115
+ "id_1": "id_1 is xxx located in xxx",
116
+ "id_2": "id_2 is xxx located in xxx",
117
+ ...
118
+ },
119
+ }
120
+ ```
id_info.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "all": {
3
+ "len": 724896,
4
+ "sensor_downtime": {
5
+ "0": {
6
+ "time": [
7
+ "2018-04-11 07:40:00",
8
+ "2018-04-11 23:55:00"
9
+ ],
10
+ "index": [
11
+ 380,
12
+ 575
13
+ ]
14
+ },
15
+ "1": {
16
+ "time": [
17
+ "2024-01-11 14:35:00",
18
+ "2024-01-11 23:55:00"
19
+ ],
20
+ "index": [
21
+ 605551,
22
+ 605663
23
+ ]
24
+ },
25
+ "2": {
26
+ "time": [
27
+ "2024-06-27 21:15:00",
28
+ "2024-06-27 23:55:00"
29
+ ],
30
+ "index": [
31
+ 654015,
32
+ 654047
33
+ ]
34
+ },
35
+ "3": {
36
+ "time": [
37
+ "2024-08-29 21:10:00",
38
+ "2024-08-29 23:55:00"
39
+ ],
40
+ "index": [
41
+ 672158,
42
+ 672191
43
+ ]
44
+ },
45
+ "4": {
46
+ "time": [
47
+ "2024-09-14 00:00:00",
48
+ "2024-09-14 23:55:00"
49
+ ],
50
+ "index": [
51
+ 676512,
52
+ 676799
53
+ ]
54
+ },
55
+ "5": {
56
+ "time": [
57
+ "2024-09-24 21:10:00",
58
+ "2024-09-25 23:55:00"
59
+ ],
60
+ "index": [
61
+ 679646,
62
+ 679967
63
+ ]
64
+ }
65
+ }
66
+ }
67
+ }
id_info_except_battery.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "all_except_battery": {
3
+ "len": 724896,
4
+ "sensor_downtime": {
5
+ "0": {
6
+ "time": [
7
+ "2018-04-11 07:40:00",
8
+ "2018-04-11 23:55:00"
9
+ ],
10
+ "index": [
11
+ 380,
12
+ 575
13
+ ]
14
+ },
15
+ "1": {
16
+ "time": [
17
+ "2024-01-11 14:35:00",
18
+ "2024-01-11 23:55:00"
19
+ ],
20
+ "index": [
21
+ 605551,
22
+ 605663
23
+ ]
24
+ },
25
+ "2": {
26
+ "time": [
27
+ "2024-06-27 21:15:00",
28
+ "2024-06-27 23:55:00"
29
+ ],
30
+ "index": [
31
+ 654015,
32
+ 654047
33
+ ]
34
+ },
35
+ "3": {
36
+ "time": [
37
+ "2024-08-29 21:10:00",
38
+ "2024-08-29 23:55:00"
39
+ ],
40
+ "index": [
41
+ 672158,
42
+ 672191
43
+ ]
44
+ },
45
+ "4": {
46
+ "time": [
47
+ "2024-09-14 00:00:00",
48
+ "2024-09-14 23:55:00"
49
+ ],
50
+ "index": [
51
+ 676512,
52
+ 676799
53
+ ]
54
+ },
55
+ "5": {
56
+ "time": [
57
+ "2024-09-24 21:10:00",
58
+ "2024-09-25 23:55:00"
59
+ ],
60
+ "index": [
61
+ 679646,
62
+ 679967
63
+ ]
64
+ }
65
+ }
66
+ }
67
+ }
raw_data/all_channel_imputed/co2.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f220f001601c50dd218530c27bbb0082d0f027c22e14775fc4df5f216de03e98
3
+ size 12892892
raw_data/all_channel_imputed/demand.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e97dd2cdc687a43e6e298f4973f1ee05aa783893c8b5c221effec29a45893ae
3
+ size 10594314
raw_data/all_channel_imputed/fuelsource.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed0bfe3332163ad6403e589593d6b68e3a142690b69b1abfd30a755d56f7b5a9
3
+ size 25547588
raw_data/all_channel_raw/raw_co2.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fe9295e670f4cba2b0ae012683ada2696481eea8ad71ef1458bff823cd11d87
3
+ size 9067158
raw_data/all_channel_raw/raw_demand.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a74e278e118d041a99d9e510fedc8c7fbba07b0fe120dd993701f487f1c31a4
3
+ size 8665713
raw_data/all_channel_raw/raw_fuelsource.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5452314c10c192a7db707ca7c027bff990a201eb9973614a4ece45838525adac
3
+ size 16353953
scripts/clean_and_impute.py ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import numpy as np
3
+ import json
4
+ import os
5
+
6
+ # --- Global Constants ---
7
+ INPUT_FILE = './data/California_ISO/raw_data/all_channel_raw/raw_fuelsource.parquet'
8
+ OUTPUT_FILE = './data/California_ISO/raw_data/fuelsource.parquet'
9
+ # NEW: Changed to a more descriptive name for the global log
10
+ OUTPUT_JSON = './data/California_ISO/downtime_log.json'
11
+
12
+ # Add any column names you want to drop from the DataFrame here.
13
+ COLUMNS_TO_DROP = ['OTHER']
14
+
15
+ # If a NaN segment's length is greater than or equal to this threshold,
16
+ # it's considered a downtime event and filled with 0.
17
+ NAN_DOWNTIME_THRESHOLD = 24
18
+ # The time frequency to resample the data to (5T = 5 minutes).
19
+ TIME_FREQUENCY = '5T'
20
+
21
+ def find_nan_segments(series: pd.Series) -> list:
22
+ """
23
+ Finds consecutive NaN segments in a pandas Series.
24
+ """
25
+ segments = []
26
+ is_nan = series.isna()
27
+ in_segment = False
28
+ segment_start = 0
29
+
30
+ for i, value in enumerate(is_nan):
31
+ if value and not in_segment:
32
+ in_segment = True
33
+ segment_start = i
34
+ elif not value and in_segment:
35
+ in_segment = False
36
+ segment_end = i
37
+ segments.append((segment_start, segment_end, segment_end - segment_start))
38
+
39
+ if in_segment:
40
+ segment_end = len(series)
41
+ segments.append((segment_start, segment_end, segment_end - segment_start))
42
+
43
+ return segments
44
+
45
+
46
+ def process_data(input_path: str, output_parquet_path: str, output_json_path: str):
47
+ """
48
+ Loads, cleans, and processes time-series data, appending new downtime events
49
+ to a central log file.
50
+ """
51
+ # --- 1. Load and Perform Initial Cleaning ---
52
+ if not os.path.exists(input_path):
53
+ print(f"Error: Input file not found -> {input_path}")
54
+ return
55
+
56
+ print(f"Loading data from {input_path}...")
57
+ demand = pd.read_parquet(input_path)
58
+
59
+ print("Performing initial data cleaning...")
60
+ demand['Time'] = pd.to_datetime(demand['Time'])
61
+ time_diffs = demand['Time'].diff().dt.total_seconds()
62
+ invalid_time_indices = time_diffs[time_diffs <= 0].index
63
+ if not invalid_time_indices.empty:
64
+ print(f"Found and removed {len(invalid_time_indices)} rows with timestamp anomalies.")
65
+ demand = demand.drop(invalid_time_indices)
66
+
67
+ demand = demand.sort_values('Time').reset_index(drop=True)
68
+
69
+ for col_to_drop in COLUMNS_TO_DROP:
70
+ if col_to_drop in demand.columns:
71
+ demand.drop(columns=[col_to_drop], inplace=True)
72
+ print(f"Successfully removed specified column: '{col_to_drop}'")
73
+
74
+ # --- 2. Resample to a Uniform Time Grid ---
75
+ print(f"Resampling data to a uniform {TIME_FREQUENCY} frequency...")
76
+ demand.set_index('Time', inplace=True)
77
+ demand_resampled = demand.resample(TIME_FREQUENCY).asfreq()
78
+ demand_resampled.reset_index(inplace=True)
79
+ print(f"Resampling complete. Total rows: {len(demand_resampled)}")
80
+
81
+ # --- 3. Load existing downtime records from the central JSON log ---
82
+ print(f"Loading existing downtime records from {output_json_path}...")
83
+ if os.path.exists(output_json_path):
84
+ try:
85
+ with open(output_json_path, 'r', encoding='utf-8') as f:
86
+ all_downtime_events = json.load(f)
87
+ except json.JSONDecodeError:
88
+ print(f"Warning: Could not decode JSON from {output_json_path}. Starting with an empty log.")
89
+ all_downtime_events = []
90
+ else:
91
+ print("No existing downtime log found. A new one will be created.")
92
+ all_downtime_events = []
93
+
94
+ # Create a set for fast duplicate checking. The signature of an event is its channel and start time.
95
+ existing_events_set = {
96
+ (event['start_time'], event['end_time']) for event in all_downtime_events
97
+ }
98
+ print(f"Found {len(all_downtime_events)} existing downtime records.")
99
+
100
+
101
+ # --- 4. Process NaN Segments Channel by Channel ---
102
+ print("\nProcessing missing data channel by channel...")
103
+ data_cols = demand_resampled.columns.drop('Time')
104
+ dataset_name = os.path.splitext(os.path.basename(output_parquet_path))[0]
105
+ new_events_found = 0
106
+
107
+ for col in data_cols:
108
+ print(f" - Processing channel: {col}")
109
+ channel_key = f"{dataset_name}_{col.replace(' ', '_')}"
110
+ nan_segments = find_nan_segments(demand_resampled[col])
111
+
112
+ for start_idx, end_idx, length in nan_segments:
113
+ if length >= NAN_DOWNTIME_THRESHOLD:
114
+ demand_resampled.loc[start_idx:end_idx - 1, col] = 0
115
+
116
+ start_time_dt = demand_resampled.at[start_idx, 'Time']
117
+ end_time_dt = demand_resampled.at[end_idx - 1, 'Time']
118
+ start_time_str = start_time_dt.strftime('%Y-%m-%d %H:%M:%S')
119
+ end_time_str = end_time_dt.strftime('%Y-%m-%d %H:%M:%S')
120
+
121
+ # Check if this event is already recorded
122
+ event_signature = (channel_key, start_time_str, end_time_str)
123
+ if event_signature not in existing_events_set:
124
+ # If not, create a new event object and append it
125
+ new_event = {
126
+ "channel_key": channel_key,
127
+ "start_time": start_time_str,
128
+ "end_time": end_time_str,
129
+ "start_index": int(start_idx),
130
+ "end_index": int(end_idx - 1),
131
+ "duration_in_steps": length
132
+ }
133
+ all_downtime_events.append(new_event)
134
+ existing_events_set.add(event_signature) # Update the set to prevent re-adding
135
+ new_events_found += 1
136
+ print(f" -> NEW downtime event found (length: {length}).")
137
+ else:
138
+ # If it exists, just skip
139
+ print(f" -> Already recorded downtime event (length: {length}).")
140
+
141
+ # Linearly interpolate the entire column to fill any remaining (shorter) NaN gaps
142
+ demand_resampled[col].interpolate(method='linear', inplace=True)
143
+
144
+ print(f"\nFound and recorded {new_events_found} new downtime events in total.")
145
+
146
+ # --- 5. Final Check and Save Results ---
147
+ print("\nFinal data check...")
148
+ final_nan_counts = demand_resampled.isna().sum()
149
+ if final_nan_counts.sum() == 0:
150
+ print("All missing values have been successfully filled.")
151
+ else:
152
+ print("Warning: Missing values still exist in the data!")
153
+ print(final_nan_counts[final_nan_counts > 0])
154
+
155
+ print(f"Saving processed data to {output_parquet_path}...")
156
+ demand_resampled.to_parquet(output_parquet_path, index=False)
157
+
158
+ # --- NEW: Save the updated central downtime log ---
159
+ print(f"Saving all {len(all_downtime_events)} downtime records to {output_json_path}...")
160
+ with open(output_json_path, 'w', encoding='utf-8') as f:
161
+ # Sort events by start time for better readability before saving
162
+ all_downtime_events.sort(key=lambda x: x['start_time'])
163
+ json.dump(all_downtime_events, f, indent=4)
164
+
165
+ print("\nProcessing complete!")
166
+
167
+ # --- Script Execution Entry Point ---
168
+ if __name__ == "__main__":
169
+ process_data(
170
+ input_path=INPUT_FILE,
171
+ output_parquet_path=OUTPUT_FILE,
172
+ output_json_path=OUTPUT_JSON
173
+ )
scripts/embed.py ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import glob
3
+ import json
4
+ import joblib
5
+ import torch
6
+ from transformers import AutoModel
7
+ from tqdm import tqdm
8
+
9
+ os.environ['HTTP_PROXY'] = 'http://localhost:1080'
10
+ os.environ['HTTPS_PROXY'] = 'http://localhost:1080'
11
+
12
+ # --- Configuration Section ---
13
+ # Model settings
14
+ MODEL_NAME = "jinaai/jina-embeddings-v3"
15
+ TRUST_REMOTE_CODE = True
16
+ TRUNCATE_DIM = 256
17
+
18
+ # Data processing settings
19
+ DATA_ROOT_DIR = "./data/California_ISO/weather"
20
+ FILE_PATTERN = os.path.join(DATA_ROOT_DIR, "*", "fast_general_*.json")
21
+ BATCH_SIZE = 5000 # Number of texts processed in single batch (adjust based on GPU memory)
22
+
23
+ def load_embedding_model(model_name, device):
24
+ """
25
+ Load text embedding model and move to specified device.
26
+ """
27
+ print(f"Loading model '{model_name}' to device '{device}'...")
28
+ try:
29
+ model = AutoModel.from_pretrained(
30
+ model_name,
31
+ trust_remote_code=TRUST_REMOTE_CODE
32
+ ).to(device)
33
+ model.eval() # Set to evaluation mode
34
+ print("Model loaded successfully.")
35
+ return model
36
+ except Exception as e:
37
+ print(f"Error: Failed to load model. {e}")
38
+ print("Please ensure 'transformers' and 'torch' libraries are installed, and internet connection is working.")
39
+ exit(1)
40
+
41
+ def process_and_embed_files(model, file_list, batch_size, truncate_dim):
42
+ """
43
+ Process list of files: generate embeddings for texts in each file and save results.
44
+ """
45
+ if not file_list:
46
+ print("No matching files found. Please check FILE_PATTERN and DATA_ROOT_DIR settings.")
47
+ return
48
+
49
+ print(f"\nFound {len(file_list)} files. Starting processing...")
50
+
51
+ # Progress bar for file processing
52
+ for file_path in tqdm(file_list, desc="Overall progress"):
53
+ try:
54
+ with open(file_path, "r") as f:
55
+ data = json.load(f)
56
+ except (json.JSONDecodeError, FileNotFoundError) as e:
57
+ print(f"\nWarning: Skipping unreadable file {file_path}: {e}")
58
+ continue
59
+
60
+ timestamps = list(data.keys())
61
+ if not timestamps:
62
+ print(f"\nWarning: Skipping empty file {file_path}")
63
+ continue
64
+
65
+ # Extract company/source name from file path for context
66
+ context_prefix = os.path.basename(os.path.dirname(file_path))
67
+ print(context_prefix)
68
+
69
+ emb_dict = {}
70
+ # Batch processing for timestamps within a file
71
+ for i in tqdm(range(0, len(timestamps), batch_size), desc=f"Processing {os.path.basename(file_path)}", leave=False):
72
+ batch_timestamps = timestamps[i : i + batch_size]
73
+
74
+ # Aggregate all texts in current batch
75
+ all_texts_in_batch = []
76
+ # len_list tracks text boundaries for later embedding separation
77
+ len_list = [0]
78
+ for timestamp in batch_timestamps:
79
+ if isinstance(data.get(timestamp), dict):
80
+ daily_texts = list(data[timestamp].values())
81
+ all_texts_in_batch.extend(daily_texts)
82
+ len_list.append(len(all_texts_in_batch))
83
+
84
+ if not all_texts_in_batch:
85
+ continue
86
+
87
+ # Add contextual prefix to each text
88
+ prefixed_texts = [f'{context_prefix}: {text}' for text in all_texts_in_batch]
89
+
90
+ # Generate embeddings with model
91
+ with torch.no_grad():
92
+ embeddings = model.encode(
93
+ prefixed_texts,
94
+ truncate_dim=truncate_dim
95
+ )
96
+
97
+ # Split aggregated embeddings back to timestamp-specific chunks
98
+ for j, timestamp in enumerate(batch_timestamps):
99
+ start_index = len_list[j]
100
+ end_index = len_list[j + 1]
101
+ emb_dict[timestamp] = embeddings[start_index:end_index, :]
102
+
103
+ # Save generated embeddings
104
+ output_dir = os.path.dirname(file_path)
105
+ base_name = os.path.basename(file_path)
106
+ output_filename = base_name.replace("forecast", "embeddings").replace(".json", ".pkl")
107
+ output_path = os.path.join(output_dir, output_filename)
108
+
109
+ with open(output_path, "wb") as f:
110
+ joblib.dump(emb_dict, f)
111
+
112
+ def main():
113
+ """
114
+ Main execution function
115
+ """
116
+ # 1. Configure processing device
117
+ device = "cuda" if torch.cuda.is_available() else "cpu"
118
+ print(f"Using compute device: {device}")
119
+
120
+ # 2. Load embedding model
121
+ model = load_embedding_model(MODEL_NAME, device)
122
+
123
+ # 3. Find all matching files
124
+ print(f"Searching for files matching '{FILE_PATTERN}'...")
125
+ files_to_process = sorted(glob.glob(FILE_PATTERN))
126
+
127
+ # 4. Execute embedding pipeline
128
+ process_and_embed_files(model, files_to_process, BATCH_SIZE, TRUNCATE_DIM)
129
+
130
+ print("\nAll files processed successfully!")
131
+
132
+ if __name__ == "__main__":
133
+ main()
scripts/embed_static.py ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import joblib
3
+ import numpy as np
4
+ import torch
5
+ import os
6
+ from transformers import AutoModel
7
+
8
+ # Set proxy (replace with your proxy address and port)
9
+ os.environ['HTTP_PROXY'] = 'http://localhost:1080'
10
+ os.environ['HTTPS_PROXY'] = 'http://localhost:1080'
11
+
12
+ def create_static_embeddings(
13
+ input_path="./data/California_ISO/static_info_except_battery.json",
14
+ output_path="./data/California_ISO/static_info_embeddings_except_battery.pkl",
15
+ ):
16
+ """
17
+ Loads static information from a JSON file, generates embeddings for the text fields,
18
+ and saves the result as a pickle file.
19
+
20
+ Args:
21
+ input_path (str): Path to the input static_info.json file.
22
+ output_path (str): Path to save the output .pkl file with embeddings.
23
+ """
24
+
25
+ # --- 2. Initialize Model ---
26
+ print("Initializing embedding model...")
27
+ # Set up device (use GPU if available)
28
+ device = "cuda:0" if torch.cuda.is_available() else "cpu"
29
+ print(f"Using device: {device}")
30
+
31
+ # Load the pre-trained model
32
+ model = AutoModel.from_pretrained(
33
+ "jinaai/jina-embeddings-v3",
34
+ trust_remote_code=True
35
+ ).to(device=device)
36
+
37
+ # --- 3. Load and Prepare Data ---
38
+ print(f"Loading data from '{input_path}'...")
39
+ with open(input_path, "rb") as f:
40
+ static_info = json.load(f)
41
+
42
+ # Start with general texts
43
+ texts_to_embed = [
44
+ static_info['general_info'],
45
+ static_info['downtime_prompt']
46
+ ]
47
+
48
+ # Create a structure to remember the path to each channel text
49
+ # e.g., [('CFH_HQ', 'location_description'), ('CFH_HQ', 'panel_type'), ...]
50
+ channel_info_paths = []
51
+ for channel_name, details_dict in static_info['channel_info'].items():
52
+ for sub_key, text_value in details_dict.items():
53
+ texts_to_embed.append(text_value)
54
+ channel_info_paths.append((channel_name, sub_key))
55
+
56
+ print(f"Found {len(texts_to_embed)} text snippets to embed.")
57
+
58
+ # --- 4. Generate Embeddings ---
59
+ print("Generating embeddings...")
60
+ embeddings = model.encode(
61
+ texts_to_embed,
62
+ truncate_dim=256 # Truncate to 256 dimensions as in the notebook
63
+ )
64
+ print(f"Embeddings generated with shape: {embeddings.shape}")
65
+
66
+ # --- 5. Replace Text with Embeddings in the Dictionary ---
67
+ print("Replacing text data with embeddings...")
68
+ # The original static_info dictionary is modified in place
69
+ static_info['general_info'] = embeddings[0:1, :]
70
+ static_info['downtime_prompt'] = embeddings[1:2, :]
71
+
72
+ # Start from the 2nd index for channel info embeddings
73
+ channel_embeddings_start_index = 2
74
+ channel_embeddings_dict = {key: [] for key in static_info['channel_info'].keys()}
75
+ for i, (channel_name, sub_key) in enumerate(channel_info_paths):
76
+ # Calculate the correct index in the flat embeddings array
77
+ embedding_index = channel_embeddings_start_index + i
78
+ # The slice keeps the result as a 2D array (1, 256)
79
+ channel_embeddings_dict[channel_name].append(embeddings[embedding_index:embedding_index+1, :])
80
+
81
+ # print(channel_embeddings_dict['weather_large'][0].shape) # Example to check the shape of the first embedding
82
+
83
+ for channel_name, embeddings_list in channel_embeddings_dict.items():
84
+ # Stack the embeddings for each channel into a single embedding
85
+ stacked_embedding = np.squeeze(np.stack(embeddings_list, axis=0))
86
+ # Replace the list of embeddings with the stacked embedding
87
+ if stacked_embedding.shape == (256,):
88
+ stacked_embedding = stacked_embedding.reshape(1, 256)
89
+ static_info['channel_info'][channel_name] = stacked_embedding
90
+
91
+ print(f"Channel '{channel_name}' embeddings shape: {stacked_embedding.shape}")
92
+
93
+ # --- 6. Save the Result ---
94
+ # Ensure the output directory exists
95
+ output_dir = os.path.dirname(output_path)
96
+ if output_dir:
97
+ os.makedirs(output_dir, exist_ok=True)
98
+
99
+ print(f"Saving embeddings to '{output_path}'...")
100
+ with open(output_path, "wb") as f:
101
+ joblib.dump(static_info, f)
102
+
103
+ print("Process completed successfully!")
104
+
105
+
106
+ if __name__ == "__main__":
107
+ create_static_embeddings()
scripts/merge_all_channel.py ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import os
3
+
4
+ # --- For Demonstration Purposes: Create Sample Files ---
5
+ # If you already have your files, you can skip or delete this part.
6
+ # To run this script as a standalone example, uncomment the following block.
7
+
8
+ # --- Step 1: Define Inputs and Output Directory ---
9
+
10
+ # A dictionary where the key is the prefix to use and the value is the input filename.
11
+ input_files = {
12
+ 'co2': 'co2.parquet',
13
+ 'demand': 'demand.parquet',
14
+ 'fuelsource': 'fuelsource.parquet'
15
+ }
16
+
17
+ # The name of the directory where the new files will be saved.
18
+ output_directory = './data/California_ISO/time_series'
19
+ output_file = 'all.parquet'
20
+
21
+ # The name of the timestamp column that should be included in every output file.
22
+ TIME_COLUMN_NAME = 'Time'
23
+
24
+ # Create the output directory if it doesn't already exist.
25
+ os.makedirs(output_directory, exist_ok=True)
26
+
27
+
28
+ # --- Step 2: Process Each File, Keeping the Time Column ---
29
+
30
+ print("\n--- Starting to process files ---")
31
+
32
+ # A list to keep track of all files created for verification.
33
+ created_files = []
34
+
35
+ # base directory
36
+ base_dir = "data/California_ISO/raw_data/all_channel_imputed"
37
+
38
+ # Timestamps and Dataframe list
39
+ Timestamps = None
40
+ all_channels_list = []
41
+
42
+ # Loop through each file defined in the input_files dictionary.
43
+ for prefix, filename in input_files.items():
44
+
45
+ filename = os.path.join(base_dir, filename)
46
+
47
+ if not os.path.exists(filename):
48
+ print(f"Warning: Input file '{filename}' not found. Skipping.")
49
+ continue
50
+
51
+ # Read the entire Parquet file into a pandas DataFrame.
52
+ df = pd.read_parquet(filename)
53
+
54
+ # --- Critical Check: Ensure the Time column exists ---
55
+ if TIME_COLUMN_NAME not in df.columns:
56
+ print(f" - ERROR: The required column '{TIME_COLUMN_NAME}' was not found in '{filename}'. Skipping this file.")
57
+ continue
58
+
59
+ # Get timestamps
60
+ Timestamps = df[[TIME_COLUMN_NAME]].copy()
61
+
62
+ # Get a list of all columns that are NOT the time column.
63
+ data_columns = df.drop(TIME_COLUMN_NAME, axis=1)
64
+
65
+ if data_columns.empty:
66
+ print(f" - Warning: No data columns found in '{filename}' besides '{TIME_COLUMN_NAME}'.")
67
+ continue
68
+
69
+ all_channels_list.append(data_columns)
70
+
71
+ # --- Step 3: Generate Final dataframe list and parquet ---
72
+
73
+ final_list = []
74
+ final_list.append(Timestamps)
75
+ final_list = final_list + all_channels_list
76
+
77
+ if all_channels_list:
78
+ print("\n--- Merging all channels ---")
79
+
80
+ # Concat all Dataframes
81
+ final_df = pd.concat(final_list, axis=1)
82
+
83
+ # Save the final parquet
84
+ final_df.to_parquet(os.path.join(output_directory, output_file))
85
+
86
+ print("\n--- Finish processing. ---")
87
+ print(f"--- Final result saved to {os.path.join(output_directory, output_file)}. ---")
88
+ print(f"--- Shape of final result: {final_df.shape} ---")
scripts/merge_embed.py ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import sys
3
+ import glob
4
+ import joblib
5
+ import numpy as np
6
+ from tqdm import tqdm
7
+
8
+ def merge_and_stack_folders(folder1_path, folder2_path, output_dir):
9
+ """
10
+ Merge same-name .pkl files from two folders and stack their contents by timestamp.
11
+ """
12
+ # 1. Validate existence of input paths
13
+ if not os.path.isdir(folder1_path):
14
+ print(f"Error: Folder not found -> {folder1_path}")
15
+ return
16
+ if not os.path.isdir(folder2_path):
17
+ print(f"Error: Folder not found -> {folder2_path}")
18
+ return
19
+
20
+ # 2. Ensure output directory exists
21
+ os.makedirs(output_dir, exist_ok=True)
22
+ print(f"Input folder 1: {folder1_path}")
23
+ print(f"Input folder 2: {folder2_path}")
24
+ print(f"Output will be saved to: {output_dir}")
25
+
26
+ # 3. Find all .pkl files in first folder
27
+ folder1_files = glob.glob(os.path.join(folder1_path, "*.pkl"))
28
+ if not folder1_files:
29
+ print(f"Warning: No .pkl files found in {folder1_path}.")
30
+ return
31
+
32
+ print(f"\nFound {len(folder1_files)} files, starting pairwise merging...")
33
+
34
+ # 4. Traverse files, find pairs and process
35
+ for file1_path in tqdm(folder1_files, desc="Processing file pairs"):
36
+ file_name = os.path.basename(file1_path)
37
+ file2_path = os.path.join(folder2_path, file_name)
38
+
39
+ # Check if paired file exists in second folder
40
+ if not os.path.exists(file2_path):
41
+ print(f"\nSkipped: Paired file not found in {folder2_path} for {file_name}")
42
+ continue
43
+
44
+ try:
45
+ # Load data from both files
46
+ with open(file1_path, 'rb') as f:
47
+ data1 = joblib.load(f)
48
+ with open(file2_path, 'rb') as f:
49
+ data2 = joblib.load(f)
50
+ except Exception as e:
51
+ print(f"\nError: Failed to load file pair {file_name}: {e}")
52
+ continue
53
+
54
+ # Create new dictionary for merged data
55
+ merged_data = {}
56
+
57
+ # Find common timestamps (keys) in both dictionaries
58
+ common_keys = data1.keys() & data2.keys()
59
+
60
+ for key in common_keys:
61
+ vec1 = data1[key]
62
+ vec2 = data2[key]
63
+
64
+ # Verify vectors meet expectations
65
+ if isinstance(vec1, np.ndarray) and isinstance(vec2, np.ndarray) and \
66
+ vec1.ndim == 2 and vec2.ndim == 2 and \
67
+ vec1.shape[1] == vec2.shape[1]: # Ensure same number of columns
68
+
69
+ # Vertically stack (N, D) and (M, D) -> (N+M, D)
70
+ # Example: (7, 256) and (7, 256) -> (14, 256)
71
+ stacked_vec = np.vstack((vec1, vec2))
72
+ merged_data[key] = stacked_vec
73
+ else:
74
+ print(f"\nWarning: Data format mismatch at timestamp {key} in file {file_name}, skipped.")
75
+
76
+ # Save result if any data was successfully merged
77
+ if merged_data:
78
+ output_path = os.path.join(output_dir, file_name)
79
+ try:
80
+ with open(output_path, 'wb') as f:
81
+ joblib.dump(merged_data, f)
82
+ except Exception as e:
83
+ print(f"\nError: Failed to save merged file {output_path}: {e}")
84
+
85
+ def main():
86
+ """
87
+ Main execution function.
88
+ """
89
+
90
+ folder1 = "./data/California_ISO/weather/san-francisco"
91
+ folder2 = "./data/California_ISO/weather/san-diego"
92
+ output_folder = "./data/California_ISO/weather/merged_report_embedding"
93
+
94
+ merge_and_stack_folders(folder1, folder2, output_folder)
95
+
96
+ print("\nAll matching files merged and stacked successfully!")
97
+
98
+
99
+ if __name__ == "__main__":
100
+ main()
static_info.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "general_info": "This dataset contains time-series data from the California Independent System Operator (CAISO) regarding the state's electricity grid. It includes real-time and forecasted electricity demand, a breakdown of electricity supply by fuel source (both measured in Megawatts, MW), and the associated carbon dioxide emissions from various generation types (measured in metric tons of CO2 per hour, mtCO2/hr). The data is collected at high-frequency intervals, typically every 5 minutes.",
3
+ "downtime_prompt": "No reading at this time for unknown reason, set 0 as default, ignore.",
4
+ "channel_info": {
5
+ "all": {
6
+ "Biogas CO2": "CO2 emissions from electricity generation using Biogas.",
7
+ "Biomass CO2": "CO2 emissions from electricity generation using Biomass.",
8
+ "Coal CO2": "CO2 emissions from electricity generation using Coal.",
9
+ "Geothermal CO2": "CO2 emissions from electricity generation using Geothermal sources.",
10
+ "Imports CO2": "CO2 emissions associated with imported electricity.",
11
+ "Natural Gas CO2": "CO2 emissions from electricity generation using Natural Gas.",
12
+ "Current demand": "The current, real-time electricity demand on the California grid.",
13
+ "Day ahead forecast": "The forecasted electricity demand for the next day.",
14
+ "Hour ahead forecast": "The short-term forecasted electricity demand for the upcoming hour.",
15
+ "BATTERIES": "The amount of electricity being discharged from battery storage systems to the grid, A negative value indicates charging.",
16
+ "BIOGAS": "The amount of electricity supplied to the grid from Biogas generation.",
17
+ "BIOMASS": "The amount of electricity supplied to the grid from Biomass generation.",
18
+ "COAL": "The amount of electricity supplied to the grid from Coal-fired power plants.",
19
+ "GEOTHERMAL": "The amount of electricity supplied to the grid from Geothermal sources.",
20
+ "IMPORTS": "The total amount of electricity being imported into the California grid from neighboring areas.",
21
+ "LARGE HYDRO": "The amount of electricity supplied to the grid from large-scale hydroelectric power plants (typically > 30 MW).",
22
+ "NATURAL GAS": "The amount of electricity supplied to the grid from Natural Gas-fired power plants.",
23
+ "NUCLEAR": "The amount of electricity supplied to the grid from Nuclear power plants.",
24
+ "SMALL HYDRO": "The amount of electricity supplied to the grid from small-scale hydroelectric power plants (typically < 30 MW).",
25
+ "SOLAR": "The amount of electricity supplied to the grid from solar power generation (both photovoltaic and thermal).",
26
+ "WIND": "The amount of electricity supplied to the grid from wind turbines."
27
+ }
28
+ }
29
+ }
static_info_embeddings_except_battery.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ee7abec9c9feb7e705b1a8a98504b67fa557e48c681e1408bf277fffa5c7ff7
3
+ size 22963
static_info_except_battery.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "general_info": "This dataset contains time-series data from the California Independent System Operator (CAISO) regarding the state's electricity grid. It includes real-time and forecasted electricity demand, a breakdown of electricity supply by fuel source (both measured in Megawatts, MW), and the associated carbon dioxide emissions from various generation types (measured in metric tons of CO2 per hour, mtCO2/hr). The data is collected at high-frequency intervals, typically every 5 minutes.",
3
+ "downtime_prompt": "No reading at this time for unknown reason, set 0 as default, ignore.",
4
+ "channel_info": {
5
+ "all_except_battery": {
6
+ "Biogas CO2": "CO2 emissions from electricity generation using Biogas.",
7
+ "Biomass CO2": "CO2 emissions from electricity generation using Biomass.",
8
+ "Coal CO2": "CO2 emissions from electricity generation using Coal.",
9
+ "Geothermal CO2": "CO2 emissions from electricity generation using Geothermal sources.",
10
+ "Imports CO2": "CO2 emissions associated with imported electricity.",
11
+ "Natural Gas CO2": "CO2 emissions from electricity generation using Natural Gas.",
12
+ "Current demand": "The current, real-time electricity demand on the California grid.",
13
+ "Day ahead forecast": "The forecasted electricity demand for the next day.",
14
+ "Hour ahead forecast": "The short-term forecasted electricity demand for the upcoming hour.",
15
+ "BIOGAS": "The amount of electricity supplied to the grid from Biogas generation.",
16
+ "BIOMASS": "The amount of electricity supplied to the grid from Biomass generation.",
17
+ "COAL": "The amount of electricity supplied to the grid from Coal-fired power plants.",
18
+ "GEOTHERMAL": "The amount of electricity supplied to the grid from Geothermal sources.",
19
+ "IMPORTS": "The total amount of electricity being imported into the California grid from neighboring areas.",
20
+ "LARGE HYDRO": "The amount of electricity supplied to the grid from large-scale hydroelectric power plants (typically > 30 MW).",
21
+ "NATURAL GAS": "The amount of electricity supplied to the grid from Natural Gas-fired power plants.",
22
+ "NUCLEAR": "The amount of electricity supplied to the grid from Nuclear power plants.",
23
+ "SMALL HYDRO": "The amount of electricity supplied to the grid from small-scale hydroelectric power plants (typically < 30 MW).",
24
+ "SOLAR": "The amount of electricity supplied to the grid from solar power generation (both photovoltaic and thermal).",
25
+ "WIND": "The amount of electricity supplied to the grid from wind turbines."
26
+ }
27
+ }
28
+ }
time_series/all.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1dba170fb008d42c054fcdfe179d5fbb3f25d7a1a6f75465622cde0cfea4ea0
3
+ size 23494657
time_series/all_except_battery.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:babcfd1cb1002e511ffd22a9171e98ca87a53c6296bebf6f0d122b9400b171a3
3
+ size 22264375
time_series/id_info.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "all": {
3
+ "len": 724896,
4
+ "sensor_downtime": {
5
+ "0": {
6
+ "time": [
7
+ "2018-04-11 07:40:00",
8
+ "2018-04-11 23:55:00"
9
+ ],
10
+ "index": [
11
+ 380,
12
+ 575
13
+ ]
14
+ },
15
+ "1": {
16
+ "time": [
17
+ "2024-01-11 14:35:00",
18
+ "2024-01-11 23:55:00"
19
+ ],
20
+ "index": [
21
+ 605551,
22
+ 605663
23
+ ]
24
+ },
25
+ "2": {
26
+ "time": [
27
+ "2024-06-27 21:15:00",
28
+ "2024-06-27 23:55:00"
29
+ ],
30
+ "index": [
31
+ 654015,
32
+ 654047
33
+ ]
34
+ },
35
+ "3": {
36
+ "time": [
37
+ "2024-08-29 21:10:00",
38
+ "2024-08-29 23:55:00"
39
+ ],
40
+ "index": [
41
+ 672158,
42
+ 672191
43
+ ]
44
+ },
45
+ "4": {
46
+ "time": [
47
+ "2024-09-14 00:00:00",
48
+ "2024-09-14 23:55:00"
49
+ ],
50
+ "index": [
51
+ 676512,
52
+ 676799
53
+ ]
54
+ },
55
+ "5": {
56
+ "time": [
57
+ "2024-09-24 21:10:00",
58
+ "2024-09-25 23:55:00"
59
+ ],
60
+ "index": [
61
+ 679646,
62
+ 679967
63
+ ]
64
+ }
65
+ }
66
+ }
67
+ }
time_series/id_info_except_battery.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "all_except_battery": {
3
+ "len": 724896,
4
+ "sensor_downtime": {
5
+ "0": {
6
+ "time": [
7
+ "2018-04-11 07:40:00",
8
+ "2018-04-11 23:55:00"
9
+ ],
10
+ "index": [
11
+ 380,
12
+ 575
13
+ ]
14
+ },
15
+ "1": {
16
+ "time": [
17
+ "2024-01-11 14:35:00",
18
+ "2024-01-11 23:55:00"
19
+ ],
20
+ "index": [
21
+ 605551,
22
+ 605663
23
+ ]
24
+ },
25
+ "2": {
26
+ "time": [
27
+ "2024-06-27 21:15:00",
28
+ "2024-06-27 23:55:00"
29
+ ],
30
+ "index": [
31
+ 654015,
32
+ 654047
33
+ ]
34
+ },
35
+ "3": {
36
+ "time": [
37
+ "2024-08-29 21:10:00",
38
+ "2024-08-29 23:55:00"
39
+ ],
40
+ "index": [
41
+ 672158,
42
+ 672191
43
+ ]
44
+ },
45
+ "4": {
46
+ "time": [
47
+ "2024-09-14 00:00:00",
48
+ "2024-09-14 23:55:00"
49
+ ],
50
+ "index": [
51
+ 676512,
52
+ 676799
53
+ ]
54
+ },
55
+ "5": {
56
+ "time": [
57
+ "2024-09-24 21:10:00",
58
+ "2024-09-25 23:55:00"
59
+ ],
60
+ "index": [
61
+ 679646,
62
+ 679967
63
+ ]
64
+ }
65
+ }
66
+ }
67
+ }
weather/merged_report_embedding/fast_general_formal_embeddings_2018.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71559cb87a767299e96d84414007375016584bf6d72120045d2b9e87f1fddf45
3
+ size 21009810
weather/merged_report_embedding/fast_general_formal_embeddings_2019.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d00c26428f7254926f1c8b1fc964179e220552c7345ecf1e54a497b8cb9266ae
3
+ size 21024210
weather/merged_report_embedding/fast_general_formal_embeddings_2020.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2eb619f94a8d4746a6f36f0d0f11a789ae1f18994c1cdcca65a50dcf1e2b3c82
3
+ size 21081810
weather/merged_report_embedding/fast_general_formal_embeddings_2021.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bf0f27c67749a0567fd7f9591190bcc3a206d2992778afe70d968c902195f1e
3
+ size 21024210
weather/merged_report_embedding/fast_general_formal_embeddings_2022.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b9e94b18617024c8029aeffaf652eff596122c3ffd4c7ced1726cbcee44558
3
+ size 21024210
weather/merged_report_embedding/fast_general_formal_embeddings_2023.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb13e0fb47306546e3ca958a6c3835e7e03b47d908b6884abbb8630eedf4b13e
3
+ size 21009810
weather/merged_report_embedding/fast_general_formal_embeddings_2024.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f323717720a2441932518d22097155ff7f12885ff7b4770b6ec66bc95874cb2
3
+ size 21081810
weather/merged_report_embedding/fast_general_formal_embeddings_2025.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:813606049c661319c91d49cffd1706389fce053f7633cde46b1ded43fa667d5a
3
+ size 3556994
weather/merged_report_embedding/static_info_embeddings_except_battery.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ee7abec9c9feb7e705b1a8a98504b67fa557e48c681e1408bf277fffa5c7ff7
3
+ size 22963
weather/san-diego/raw_data/daily_weather_2018.csv ADDED
@@ -0,0 +1,1460 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20180101,00:00,06:00,12,9,Fog.,3,300,99,1020
3
+ 20180101,06:00,12:00,18,12,Fog.,11,350,85,1021
4
+ 20180101,12:00,18:00,18,16,Sunny.,17,310,80,1019
5
+ 20180101,18:00,00:00,15,14,Fog.,3,290,94,1021
6
+ 20180102,00:00,06:00,13,12,Fog.,3,10,97,1021
7
+ 20180102,06:00,12:00,21,14,Fog.,9,330,74,1020
8
+ 20180102,12:00,18:00,20,17,Scattered clouds.,18,340,63,1017
9
+ 20180102,18:00,00:00,17,14,Fog.,10,330,94,1018
10
+ 20180103,00:00,06:00,14,12,Fog.,3,100,98,1017
11
+ 20180103,06:00,12:00,17,13,Fog.,5,170,87,1018
12
+ 20180103,12:00,18:00,18,16,Mostly cloudy.,5,180,89,1016
13
+ 20180103,18:00,00:00,16,15,Fog.,5,220,98,1019
14
+ 20180104,00:00,06:00,15,11,Fog.,6,30,98,1019
15
+ 20180104,06:00,12:00,22,12,Fog.,4,330,77,1020
16
+ 20180104,12:00,18:00,22,18,Passing clouds.,12,320,56,1018
17
+ 20180104,18:00,00:00,17,14,Passing clouds.,7,0,68,1021
18
+ 20180105,00:00,06:00,14,12,Clear.,2,340,77,1021
19
+ 20180105,06:00,12:00,22,12,Scattered clouds.,13,320,56,1022
20
+ 20180105,12:00,18:00,20,16,Partly sunny.,23,330,88,1020
21
+ 20180105,18:00,00:00,17,16,Fog.,13,340,97,1021
22
+ 20180106,00:00,06:00,16,15,Fog.,11,330,99,1019
23
+ 20180106,06:00,12:00,20,16,Fog.,11,320,88,1021
24
+ 20180106,12:00,18:00,19,17,Fog.,16,320,88,1019
25
+ 20180106,18:00,00:00,17,16,Passing clouds.,6,330,94,1019
26
+ 20180107,00:00,06:00,16,14,Fog.,4,10,96,1018
27
+ 20180107,06:00,12:00,19,14,Fog.,5,0,89,1019
28
+ 20180107,12:00,18:00,18,17,Broken clouds.,18,330,79,1016
29
+ 20180107,18:00,00:00,17,17,Partly cloudy.,10,340,87,1016
30
+ 20180108,00:00,06:00,16,16,Fog.,2,330,94,1014
31
+ 20180108,06:00,12:00,19,17,Fog.,7,0,86,1014
32
+ 20180108,12:00,18:00,19,17,Mostly cloudy.,9,160,83,1012
33
+ 20180108,18:00,00:00,17,17,Light rain. Mostly cloudy.,11,150,90,1011
34
+ 20180109,00:00,06:00,18,16,Light rain. Fog.,34,140,97,1007
35
+ 20180109,06:00,12:00,18,14,Light rain. Mostly cloudy.,23,260,83,1010
36
+ 20180109,12:00,18:00,18,14,Partly sunny.,29,220,80,1010
37
+ 20180109,18:00,00:00,15,14,Partly cloudy.,30,250,88,1012
38
+ 20180110,00:00,06:00,15,14,Partly cloudy.,23,290,88,1014
39
+ 20180110,06:00,12:00,16,14,Broken clouds.,15,250,90,1018
40
+ 20180110,12:00,18:00,16,15,Broken clouds.,9,210,80,1018
41
+ 20180110,18:00,00:00,14,12,Passing clouds.,4,350,90,1020
42
+ 20180111,00:00,06:00,13,11,Passing clouds.,1,300,95,1021
43
+ 20180111,06:00,12:00,18,11,Passing clouds.,6,60,80,1023
44
+ 20180111,12:00,18:00,18,16,Sunny.,20,320,79,1021
45
+ 20180111,18:00,00:00,15,14,Clear.,6,0,95,1022
46
+ 20180112,00:00,06:00,14,12,Fog.,5,30,99,1022
47
+ 20180112,06:00,12:00,17,12,Fog.,7,350,91,1022
48
+ 20180112,12:00,18:00,19,14,Fog.,21,320,88,1018
49
+ 20180112,18:00,00:00,14,12,Fog.,13,0,99,1019
50
+ 20180113,00:00,06:00,13,13,Fog.,7,310,100,1019
51
+ 20180113,06:00,12:00,27,13,Partly sunny.,6,350,51,1019
52
+ 20180113,12:00,18:00,26,22,Partly sunny.,15,330,31,1017
53
+ 20180113,18:00,00:00,19,16,Passing clouds.,3,240,57,1019
54
+ 20180114,00:00,06:00,15,15,Clear.,6,310,67,1018
55
+ 20180114,06:00,12:00,25,13,Broken clouds.,3,20,45,1020
56
+ 20180114,12:00,18:00,24,16,Broken clouds.,8,290,47,1019
57
+ 20180114,18:00,00:00,16,14,Passing clouds.,2,110,90,1019
58
+ 20180115,00:00,06:00,,,Not Available,,,,
59
+ 20180115,06:00,12:00,,,Not Available,,,,
60
+ 20180115,12:00,18:00,,,Not Available,,,,
61
+ 20180115,18:00,00:00,15,14,Passing clouds.,12,340,92,1020
62
+ 20180116,00:00,06:00,14,12,Fog.,4,40,96,1020
63
+ 20180116,06:00,12:00,17,12,Partly sunny.,9,10,88,1020
64
+ 20180116,12:00,18:00,19,17,Broken clouds.,15,310,70,1019
65
+ 20180116,18:00,00:00,16,13,Partly cloudy.,11,340,84,1020
66
+ 20180117,00:00,06:00,13,12,Fog.,4,340,98,1020
67
+ 20180117,06:00,12:00,20,12,Fog.,8,0,83,1021
68
+ 20180117,12:00,18:00,21,17,Scattered clouds.,20,340,70,1019
69
+ 20180117,18:00,00:00,16,14,Passing clouds.,7,340,83,1019
70
+ 20180118,00:00,06:00,14,12,Passing clouds.,2,0,94,1018
71
+ 20180118,06:00,12:00,15,11,Fog.,5,170,95,1020
72
+ 20180118,12:00,18:00,18,15,Fog.,13,220,86,1017
73
+ 20180118,18:00,00:00,15,14,Passing clouds.,4,130,94,1017
74
+ 20180119,00:00,06:00,14,13,Passing clouds.,1,70,98,1017
75
+ 20180119,06:00,12:00,17,13,Fog.,3,100,84,1017
76
+ 20180119,12:00,18:00,17,15,Mostly cloudy.,9,270,84,1014
77
+ 20180119,18:00,00:00,15,14,Partly cloudy.,19,280,74,1015
78
+ 20180120,00:00,06:00,,,Not Available,,,,
79
+ 20180120,06:00,12:00,17,14,Partly sunny.,29,290,51,1017
80
+ 20180120,12:00,18:00,16,14,Scattered clouds.,20,290,50,1018
81
+ 20180120,18:00,00:00,14,12,Passing clouds.,13,310,64,1021
82
+ 20180121,00:00,06:00,9,8,Clear.,0,0,80,1023
83
+ 20180121,06:00,12:00,16,10,Scattered clouds.,5,100,61,1025
84
+ 20180121,12:00,18:00,16,14,Partly sunny.,13,300,50,1024
85
+ 20180121,18:00,00:00,14,12,Passing clouds.,9,350,60,1025
86
+ 20180122,00:00,06:00,9,8,Clear.,4,110,71,1024
87
+ 20180122,06:00,12:00,18,8,Passing clouds.,7,290,46,1024
88
+ 20180122,12:00,18:00,18,15,Sunny.,20,320,45,1021
89
+ 20180122,18:00,00:00,14,11,Clear.,5,10,71,1021
90
+ 20180123,00:00,06:00,9,7,Clear.,2,110,68,1020
91
+ 20180123,06:00,12:00,19,8,Sunny.,2,190,48,1020
92
+ 20180123,12:00,18:00,20,18,Passing clouds.,22,320,40,1018
93
+ 20180123,18:00,00:00,16,11,Clear.,1,10,58,1020
94
+ 20180124,00:00,06:00,11,9,Clear.,6,340,65,1019
95
+ 20180124,06:00,12:00,23,9,Scattered clouds.,7,330,36,1020
96
+ 20180124,12:00,18:00,22,17,Partly sunny.,16,340,29,1017
97
+ 20180124,18:00,00:00,14,10,Passing clouds.,5,330,66,1017
98
+ 20180125,00:00,06:00,11,8,Clear.,4,40,65,1017
99
+ 20180125,06:00,12:00,16,9,Broken clouds.,6,190,55,1019
100
+ 20180125,12:00,18:00,17,14,Broken clouds.,15,260,73,1018
101
+ 20180125,18:00,00:00,14,11,Passing clouds.,12,300,71,1020
102
+ 20180126,00:00,06:00,11,6,Partly cloudy.,8,110,86,1021
103
+ 20180126,06:00,12:00,17,11,Passing clouds.,7,0,65,1023
104
+ 20180126,12:00,18:00,17,14,Scattered clouds.,22,320,52,1021
105
+ 20180126,18:00,00:00,14,11,Passing clouds.,7,0,72,1022
106
+ 20180127,00:00,06:00,9,8,Clear.,5,100,76,1022
107
+ 20180127,06:00,12:00,18,8,Partly sunny.,4,60,48,1023
108
+ 20180127,12:00,18:00,19,16,Partly sunny.,20,320,44,1020
109
+ 20180127,18:00,00:00,14,10,Passing clouds.,6,20,67,1020
110
+ 20180128,00:00,06:00,11,9,Clear.,4,30,72,1020
111
+ 20180128,06:00,12:00,24,9,Sunny.,7,130,37,1020
112
+ 20180128,12:00,18:00,27,21,Passing clouds.,10,320,28,1018
113
+ 20180128,18:00,00:00,17,14,Clear.,2,340,65,1018
114
+ 20180129,00:00,06:00,14,11,Clear.,4,310,72,1018
115
+ 20180129,06:00,12:00,28,11,Passing clouds.,9,350,43,1019
116
+ 20180129,12:00,18:00,27,21,Partly sunny.,16,320,22,1016
117
+ 20180129,18:00,00:00,18,16,Passing clouds.,2,340,46,1017
118
+ 20180130,00:00,06:00,18,14,Passing clouds.,8,350,42,1016
119
+ 20180130,06:00,12:00,26,14,Partly sunny.,2,20,29,1017
120
+ 20180130,12:00,18:00,27,22,Partly sunny.,11,310,16,1014
121
+ 20180130,18:00,00:00,21,14,Passing clouds.,7,0,35,1015
122
+ 20180131,00:00,06:00,13,12,Passing clouds.,2,130,61,1014
123
+ 20180131,06:00,12:00,20,13,Passing clouds.,7,200,48,1015
124
+ 20180131,12:00,18:00,22,19,Passing clouds.,7,270,40,1013
125
+ 20180131,18:00,00:00,18,13,Passing clouds.,2,340,66,1014
126
+ 20180201,00:00,06:00,14,12,Passing clouds.,1,40,75,1014
127
+ 20180201,06:00,12:00,17,12,Passing clouds.,5,140,83,1016
128
+ 20180201,12:00,18:00,18,13,Scattered clouds.,10,280,75,1015
129
+ 20180201,18:00,00:00,14,12,Fog.,4,150,98,1017
130
+ 20180202,00:00,06:00,13,11,Passing clouds.,3,20,91,1017
131
+ 20180202,06:00,12:00,25,11,Partly sunny.,2,20,53,1019
132
+ 20180202,12:00,18:00,26,16,Partly sunny.,6,280,40,1017
133
+ 20180202,18:00,00:00,16,14,Passing clouds.,1,340,81,1018
134
+ 20180203,00:00,06:00,,,Not Available,,,,
135
+ 20180203,06:00,12:00,24,19,Sunny.,6,330,33,1019
136
+ 20180203,12:00,18:00,24,18,Passing clouds.,16,320,41,1016
137
+ 20180203,18:00,00:00,17,14,Passing clouds.,4,320,63,1017
138
+ 20180204,00:00,06:00,12,12,Clear.,0,0,74,1017
139
+ 20180204,06:00,12:00,25,12,Passing clouds.,3,340,53,1017
140
+ 20180204,12:00,18:00,23,17,Passing clouds.,15,320,52,1015
141
+ 20180204,18:00,00:00,17,15,Passing clouds.,6,310,82,1016
142
+ 20180205,00:00,06:00,14,12,Fog.,4,160,99,1015
143
+ 20180205,06:00,12:00,16,12,Fog.,8,180,92,1016
144
+ 20180205,12:00,18:00,17,15,Passing clouds.,9,190,85,1013
145
+ 20180205,18:00,00:00,16,14,Passing clouds.,8,320,93,1014
146
+ 20180206,00:00,06:00,14,14,Overcast.,9,190,89,1014
147
+ 20180206,06:00,12:00,16,14,Fog.,9,200,84,1016
148
+ 20180206,12:00,18:00,17,15,Passing clouds.,10,210,79,1016
149
+ 20180206,18:00,00:00,15,12,Passing clouds.,5,340,90,1018
150
+ 20180207,00:00,06:00,14,12,Fog.,7,90,96,1021
151
+ 20180207,06:00,12:00,23,12,Fog.,11,0,79,1022
152
+ 20180207,12:00,18:00,24,20,Passing clouds.,20,340,43,1019
153
+ 20180207,18:00,00:00,18,14,Clear.,0,0,58,1021
154
+ 20180208,00:00,06:00,14,11,Passing clouds.,8,340,96,1020
155
+ 20180208,06:00,12:00,24,11,Sunny.,6,350,44,1019
156
+ 20180208,12:00,18:00,23,19,Sunny.,20,340,37,1016
157
+ 20180208,18:00,00:00,18,14,Clear.,4,290,71,1016
158
+ 20180209,00:00,06:00,14,13,Fog.,4,140,100,1016
159
+ 20180209,06:00,12:00,16,13,Fog.,11,190,93,1017
160
+ 20180209,12:00,18:00,16,14,Scattered clouds.,12,200,84,1014
161
+ 20180209,18:00,00:00,14,14,Passing clouds.,11,180,92,1014
162
+ 20180210,00:00,06:00,14,14,Fog.,15,150,87,1013
163
+ 20180210,06:00,12:00,18,15,Partly sunny.,17,140,74,1013
164
+ 20180210,12:00,18:00,18,16,Partly sunny.,23,180,81,1011
165
+ 20180210,18:00,00:00,16,16,Passing clouds.,13,150,87,1011
166
+ 20180211,00:00,06:00,15,11,Clear.,4,130,92,1012
167
+ 20180211,06:00,12:00,17,14,Passing clouds.,6,100,56,1013
168
+ 20180211,12:00,18:00,18,17,Scattered clouds.,11,210,73,1011
169
+ 20180211,18:00,00:00,17,16,Passing clouds.,6,130,75,1012
170
+ 20180212,00:00,06:00,16,16,Passing clouds.,14,230,83,1011
171
+ 20180212,06:00,12:00,16,15,More clouds than sun.,19,290,70,1012
172
+ 20180212,12:00,18:00,17,14,Partly sunny.,17,270,57,1012
173
+ 20180212,18:00,00:00,14,13,Passing clouds.,14,280,63,1015
174
+ 20180213,00:00,06:00,14,12,Passing clouds.,10,50,72,1017
175
+ 20180213,06:00,12:00,17,11,Passing clouds.,7,210,62,1019
176
+ 20180213,12:00,18:00,18,16,Partly sunny.,10,210,55,1019
177
+ 20180213,18:00,00:00,16,16,Passing clouds.,8,10,60,1020
178
+ 20180214,00:00,06:00,16,13,Partly cloudy.,3,20,65,1019
179
+ 20180214,06:00,12:00,19,14,Scattered clouds.,6,200,54,1019
180
+ 20180214,12:00,18:00,20,16,Broken clouds.,10,280,63,1017
181
+ 20180214,18:00,00:00,16,14,Partly cloudy.,7,130,85,1019
182
+ 20180215,00:00,06:00,14,13,Passing clouds.,6,30,87,1018
183
+ 20180215,06:00,12:00,20,12,Scattered clouds.,8,190,69,1019
184
+ 20180215,12:00,18:00,20,17,Partly sunny.,26,320,60,1017
185
+ 20180215,18:00,00:00,17,14,Passing clouds.,8,0,66,1020
186
+ 20180216,00:00,06:00,13,11,Passing clouds.,5,0,79,1019
187
+ 20180216,06:00,12:00,24,14,Partly sunny.,7,110,31,1020
188
+ 20180216,12:00,18:00,22,18,Passing clouds.,21,300,32,1017
189
+ 20180216,18:00,00:00,18,13,Clear.,8,350,45,1019
190
+ 20180217,00:00,06:00,9,8,Clear.,3,90,54,1019
191
+ 20180217,06:00,12:00,21,14,Passing clouds.,4,0,30,1020
192
+ 20180217,12:00,18:00,23,17,Partly sunny.,18,300,30,1017
193
+ 20180217,18:00,00:00,17,14,Passing clouds.,9,340,68,1017
194
+ 20180218,00:00,06:00,14,12,Clear.,7,350,58,1016
195
+ 20180218,06:00,12:00,18,11,Scattered clouds.,4,280,59,1016
196
+ 20180218,12:00,18:00,18,15,Scattered clouds.,15,270,68,1013
197
+ 20180218,18:00,00:00,15,14,Passing clouds.,15,230,75,1013
198
+ 20180219,00:00,06:00,14,14,Mostly cloudy.,27,280,66,1013
199
+ 20180219,06:00,12:00,15,13,Passing clouds.,31,290,43,1014
200
+ 20180219,12:00,18:00,15,14,Sunny.,31,270,39,1014
201
+ 20180219,18:00,00:00,12,11,Light rain. Passing clouds.,23,290,44,1016
202
+ 20180220,00:00,06:00,10,6,Passing clouds.,9,340,48,1018
203
+ 20180220,06:00,12:00,13,6,Passing clouds.,9,90,42,1021
204
+ 20180220,12:00,18:00,14,12,Passing clouds.,20,280,34,1020
205
+ 20180220,18:00,00:00,12,8,Clear.,6,90,51,1021
206
+ 20180221,00:00,06:00,7,7,Passing clouds.,1,90,51,1020
207
+ 20180221,06:00,12:00,16,7,Broken clouds.,13,130,49,1021
208
+ 20180221,12:00,18:00,15,13,Scattered clouds.,15,240,47,1020
209
+ 20180221,18:00,00:00,13,9,Passing clouds.,6,320,61,1022
210
+ 20180222,00:00,06:00,9,8,Passing clouds.,1,100,71,1023
211
+ 20180222,06:00,12:00,15,9,Mostly cloudy.,15,190,65,1025
212
+ 20180222,12:00,18:00,15,12,Partly sunny.,14,270,77,1023
213
+ 20180222,18:00,00:00,13,12,Passing clouds.,16,290,68,1023
214
+ 20180223,00:00,06:00,12,12,Partly cloudy.,24,300,63,1023
215
+ 20180223,06:00,12:00,14,11,Broken clouds.,31,290,52,1023
216
+ 20180223,12:00,18:00,13,12,Passing clouds.,20,300,44,1022
217
+ 20180223,18:00,00:00,12,10,Passing clouds.,7,40,52,1024
218
+ 20180224,00:00,06:00,5,5,Clear.,7,100,65,1027
219
+ 20180224,06:00,12:00,16,6,Sunny.,8,0,43,1027
220
+ 20180224,12:00,18:00,16,13,Sunny.,23,290,30,1023
221
+ 20180224,18:00,00:00,13,10,Clear.,11,260,53,1023
222
+ 20180225,00:00,06:00,,,Not Available,,,,
223
+ 20180225,06:00,12:00,17,6,Sunny.,14,330,45,1022
224
+ 20180225,12:00,18:00,18,16,Sunny.,24,330,46,1019
225
+ 20180225,18:00,00:00,15,9,Clear.,6,350,50,1020
226
+ 20180226,00:00,06:00,9,8,Clear.,6,110,60,1018
227
+ 20180226,06:00,12:00,16,9,Passing clouds.,9,180,54,1018
228
+ 20180226,12:00,18:00,17,14,Passing clouds.,14,220,68,1014
229
+ 20180226,18:00,00:00,14,13,Partly cloudy.,11,280,67,1014
230
+ 20180227,00:00,06:00,13,11,Light rain. Partly cloudy.,25,300,85,1013
231
+ 20180227,06:00,12:00,14,10,Partly sunny.,12,0,64,1015
232
+ 20180227,12:00,18:00,13,11,Broken clouds.,12,220,61,1016
233
+ 20180227,18:00,00:00,11,9,Passing clouds.,7,10,71,1018
234
+ 20180228,00:00,06:00,8,6,Passing clouds.,7,90,85,1020
235
+ 20180228,06:00,12:00,14,7,Scattered clouds.,10,120,70,1023
236
+ 20180228,12:00,18:00,14,13,Passing clouds.,13,210,63,1023
237
+ 20180228,18:00,00:00,13,11,Passing clouds.,0,0,70,1024
238
+ 20180301,00:00,06:00,10,8,Passing clouds.,1,90,82,1022
239
+ 20180301,06:00,12:00,15,8,Passing clouds.,6,290,67,1023
240
+ 20180301,12:00,18:00,16,14,Passing clouds.,21,300,58,1020
241
+ 20180301,18:00,00:00,13,12,Passing clouds.,4,320,75,1020
242
+ 20180302,00:00,06:00,11,7,Clear.,4,90,86,1020
243
+ 20180302,06:00,12:00,16,8,Passing clouds.,9,100,70,1020
244
+ 20180302,12:00,18:00,17,14,Scattered clouds.,14,260,68,1018
245
+ 20180302,18:00,00:00,14,14,Mostly cloudy.,13,140,83,1018
246
+ 20180303,00:00,06:00,14,12,Mostly cloudy.,12,130,94,1017
247
+ 20180303,06:00,12:00,17,13,Broken clouds.,19,260,79,1019
248
+ 20180303,12:00,18:00,17,14,Broken clouds.,15,230,69,1018
249
+ 20180303,18:00,00:00,14,13,Passing clouds.,10,280,81,1019
250
+ 20180304,00:00,06:00,13,12,Passing clouds.,19,300,70,1020
251
+ 20180304,06:00,12:00,14,12,Scattered clouds.,17,310,55,1023
252
+ 20180304,12:00,18:00,16,14,Partly sunny.,25,320,48,1020
253
+ 20180304,18:00,00:00,14,13,Passing clouds.,13,340,58,1021
254
+ 20180305,00:00,06:00,11,8,Clear.,4,10,76,1020
255
+ 20180305,06:00,12:00,19,9,Passing clouds.,4,320,52,1020
256
+ 20180305,12:00,18:00,21,18,Partly sunny.,24,320,24,1017
257
+ 20180305,18:00,00:00,17,12,Passing clouds.,9,0,41,1017
258
+ 20180306,00:00,06:00,13,11,Passing clouds.,2,320,51,1017
259
+ 20180306,06:00,12:00,23,11,Scattered clouds.,6,320,34,1018
260
+ 20180306,12:00,18:00,22,16,Partly sunny.,14,310,32,1015
261
+ 20180306,18:00,00:00,15,13,Passing clouds.,2,210,76,1017
262
+ 20180307,00:00,06:00,13,11,Passing clouds.,3,0,64,1016
263
+ 20180307,06:00,12:00,21,13,Broken clouds.,10,300,42,1017
264
+ 20180307,12:00,18:00,22,16,Broken clouds.,17,320,35,1015
265
+ 20180307,18:00,00:00,16,15,Partly cloudy.,8,340,84,1017
266
+ 20180308,00:00,06:00,15,12,Passing clouds.,5,320,86,1017
267
+ 20180308,06:00,12:00,19,13,Broken clouds.,9,340,64,1018
268
+ 20180308,12:00,18:00,19,16,Broken clouds.,15,320,58,1016
269
+ 20180308,18:00,00:00,16,12,Partly cloudy.,2,350,80,1016
270
+ 20180309,00:00,06:00,13,12,Passing clouds.,2,270,88,1015
271
+ 20180309,06:00,12:00,18,13,Broken clouds.,7,200,74,1016
272
+ 20180309,12:00,18:00,18,15,Partly sunny.,12,290,86,1015
273
+ 20180309,18:00,00:00,16,15,Overcast.,8,290,89,1015
274
+ 20180310,00:00,06:00,15,14,Overcast.,7,300,89,1014
275
+ 20180310,06:00,12:00,15,15,Light rain. Fog.,5,210,92,1016
276
+ 20180310,12:00,18:00,16,14,Light rain. Fog.,13,170,97,1015
277
+ 20180310,18:00,00:00,15,15,Light rain. Fog.,17,160,98,1016
278
+ 20180311,00:00,06:00,16,14,Overcast.,9,160,89,1016
279
+ 20180311,06:00,12:00,18,16,Overcast.,16,180,81,1018
280
+ 20180311,12:00,18:00,19,17,Partly sunny.,13,230,82,1018
281
+ 20180311,18:00,00:00,16,15,Passing clouds.,3,200,89,1020
282
+ 20180312,00:00,06:00,16,15,Overcast.,7,280,93,1019
283
+ 20180312,06:00,12:00,18,16,Broken clouds.,10,320,80,1018
284
+ 20180312,12:00,18:00,18,17,Partly sunny.,19,300,80,1017
285
+ 20180312,18:00,00:00,16,16,Passing clouds.,12,310,85,1018
286
+ 20180313,00:00,06:00,16,16,Overcast.,10,0,86,1017
287
+ 20180313,06:00,12:00,18,15,Fog.,11,350,85,1017
288
+ 20180313,12:00,18:00,18,17,Mostly cloudy.,19,310,84,1016
289
+ 20180313,18:00,00:00,17,16,Light rain. Passing clouds.,7,300,94,1017
290
+ 20180314,00:00,06:00,16,16,Low clouds.,6,240,95,1016
291
+ 20180314,06:00,12:00,17,16,Partly sunny.,17,310,86,1017
292
+ 20180314,12:00,18:00,18,17,Partly sunny.,17,260,68,1017
293
+ 20180314,18:00,00:00,16,15,Partly cloudy.,11,220,78,1016
294
+ 20180315,00:00,06:00,16,13,Partly cloudy.,23,200,83,1015
295
+ 20180315,06:00,12:00,16,14,Partly sunny.,24,280,71,1017
296
+ 20180315,12:00,18:00,16,15,Scattered clouds.,17,260,61,1017
297
+ 20180315,18:00,00:00,14,13,Passing clouds.,5,250,66,1018
298
+ 20180316,00:00,06:00,13,11,Passing clouds.,9,240,62,1018
299
+ 20180316,06:00,12:00,15,10,Broken clouds.,4,140,70,1017
300
+ 20180316,12:00,18:00,16,16,Scattered clouds.,18,260,58,1016
301
+ 20180316,18:00,00:00,14,13,Passing clouds.,7,260,65,1016
302
+ 20180317,00:00,06:00,14,12,Light rain. Fog.,17,140,89,1016
303
+ 20180317,06:00,12:00,16,12,Broken clouds.,9,310,84,1017
304
+ 20180317,12:00,18:00,16,15,Broken clouds.,15,290,60,1017
305
+ 20180317,18:00,00:00,14,13,Partly cloudy.,15,300,64,1018
306
+ 20180318,00:00,06:00,13,12,Clear.,17,310,66,1018
307
+ 20180318,06:00,12:00,15,9,Scattered clouds.,10,100,71,1021
308
+ 20180318,12:00,18:00,16,14,Partly sunny.,22,280,56,1020
309
+ 20180318,18:00,00:00,14,13,Passing clouds.,17,340,64,1020
310
+ 20180319,00:00,06:00,13,10,Clear.,4,10,74,1018
311
+ 20180319,06:00,12:00,18,10,Broken clouds.,4,210,69,1018
312
+ 20180319,12:00,18:00,19,17,Partly sunny.,18,300,56,1016
313
+ 20180319,18:00,00:00,16,14,Passing clouds.,10,310,82,1017
314
+ 20180320,00:00,06:00,13,11,Clear.,2,320,87,1017
315
+ 20180320,06:00,12:00,20,12,Broken clouds.,5,210,61,1016
316
+ 20180320,12:00,18:00,19,17,Broken clouds.,20,310,55,1014
317
+ 20180320,18:00,00:00,17,14,Partly cloudy.,15,340,76,1015
318
+ 20180321,00:00,06:00,13,12,Clear.,6,340,74,1014
319
+ 20180321,06:00,12:00,21,13,Partly sunny.,6,0,55,1016
320
+ 20180321,12:00,18:00,22,21,Broken clouds.,23,320,38,1015
321
+ 20180321,18:00,00:00,20,18,Mostly cloudy.,11,330,44,1014
322
+ 20180322,00:00,06:00,18,17,Partly cloudy.,9,270,62,1014
323
+ 20180322,06:00,12:00,18,16,Broken clouds.,7,120,84,1018
324
+ 20180322,12:00,18:00,21,17,Partly sunny.,14,340,68,1017
325
+ 20180322,18:00,00:00,17,16,Mostly cloudy.,5,330,72,1018
326
+ 20180323,00:00,06:00,15,14,Mostly cloudy.,2,210,94,1019
327
+ 20180323,06:00,12:00,17,14,Broken clouds.,12,290,91,1020
328
+ 20180323,12:00,18:00,18,16,Broken clouds.,23,310,71,1019
329
+ 20180323,18:00,00:00,16,14,Overcast.,11,340,83,1018
330
+ 20180324,00:00,06:00,14,14,Overcast.,9,280,72,1017
331
+ 20180324,06:00,12:00,16,14,Partly sunny.,13,270,66,1018
332
+ 20180324,12:00,18:00,17,15,Scattered clouds.,17,240,61,1018
333
+ 20180324,18:00,00:00,14,14,Partly cloudy.,7,270,69,1018
334
+ 20180325,00:00,06:00,14,12,Partly cloudy.,12,140,74,1017
335
+ 20180325,06:00,12:00,16,13,Partly sunny.,19,270,58,1018
336
+ 20180325,12:00,18:00,17,15,Scattered clouds.,22,280,51,1017
337
+ 20180325,18:00,00:00,14,12,Passing clouds.,11,270,58,1016
338
+ 20180326,00:00,06:00,12,11,Passing clouds.,11,130,74,1015
339
+ 20180326,06:00,12:00,15,10,Scattered clouds.,13,130,70,1017
340
+ 20180326,12:00,18:00,17,16,Scattered clouds.,22,300,54,1016
341
+ 20180326,18:00,00:00,16,13,Passing clouds.,9,330,56,1017
342
+ 20180327,00:00,06:00,10,9,Passing clouds.,5,90,69,1018
343
+ 20180327,06:00,12:00,18,9,Sunny.,8,100,57,1020
344
+ 20180327,12:00,18:00,20,18,Sunny.,20,280,49,1018
345
+ 20180327,18:00,00:00,18,13,Clear.,9,290,65,1019
346
+ 20180328,00:00,06:00,13,11,Passing clouds.,2,320,68,1019
347
+ 20180328,06:00,12:00,18,9,Sunny.,6,290,50,1020
348
+ 20180328,12:00,18:00,19,18,Sunny.,13,320,61,1018
349
+ 20180328,18:00,00:00,18,14,Clear.,5,310,80,1018
350
+ 20180329,00:00,06:00,14,12,Fog.,0,0,95,1017
351
+ 20180329,06:00,12:00,19,13,Fog.,10,310,85,1018
352
+ 20180329,12:00,18:00,19,17,Passing clouds.,17,320,69,1016
353
+ 20180329,18:00,00:00,16,14,Passing clouds.,12,320,80,1016
354
+ 20180330,00:00,06:00,14,13,Passing clouds.,3,320,93,1017
355
+ 20180330,06:00,12:00,20,14,Passing clouds.,6,40,74,1018
356
+ 20180330,12:00,18:00,18,16,Partly sunny.,17,310,76,1017
357
+ 20180330,18:00,00:00,16,14,Fog.,9,320,82,1017
358
+ 20180331,00:00,06:00,13,13,Fog.,9,350,100,1017
359
+ 20180331,06:00,12:00,16,12,Fog.,7,0,92,1017
360
+ 20180331,12:00,18:00,18,15,Broken clouds.,15,270,70,1016
361
+ 20180331,18:00,00:00,15,14,Passing clouds.,6,280,86,1016
362
+ 20180401,06:00,12:00,17,14,Partly sunny.,9,240,75,1014
363
+ 20180401,12:00,18:00,17,16,Partly sunny.,14,240,70,1013
364
+ 20180401,18:00,00:00,15,14,Partly cloudy.,6,220,74,1012
365
+ 20180402,00:00,06:00,15,14,Passing clouds.,7,160,86,1012
366
+ 20180402,06:00,12:00,17,15,More clouds than sun.,11,180,81,1012
367
+ 20180402,12:00,18:00,17,16,More clouds than sun.,13,210,73,1011
368
+ 20180402,18:00,00:00,16,15,Passing clouds.,7,200,74,1012
369
+ 20180403,00:00,06:00,15,15,Overcast.,9,200,84,1013
370
+ 20180403,06:00,12:00,19,14,Partly sunny.,7,210,77,1015
371
+ 20180403,12:00,18:00,19,17,Partly sunny.,21,310,68,1015
372
+ 20180403,18:00,00:00,17,15,Passing clouds.,12,310,82,1016
373
+ 20180404,00:00,06:00,16,15,Overcast.,9,320,84,1016
374
+ 20180404,06:00,12:00,17,15,Overcast.,10,80,81,1018
375
+ 20180404,12:00,18:00,17,15,Partly sunny.,17,290,81,1017
376
+ 20180404,18:00,00:00,14,14,Passing clouds.,13,350,79,1017
377
+ 20180405,00:00,06:00,14,13,Low clouds.,7,300,88,1017
378
+ 20180405,06:00,12:00,17,13,Overcast.,9,10,83,1018
379
+ 20180405,12:00,18:00,18,17,Broken clouds.,12,0,69,1016
380
+ 20180405,18:00,00:00,16,15,Passing clouds.,8,290,82,1016
381
+ 20180406,00:00,06:00,14,14,Passing clouds.,6,170,88,1015
382
+ 20180406,06:00,12:00,18,14,Partly sunny.,12,190,78,1016
383
+ 20180406,12:00,18:00,18,18,Partly sunny.,16,280,71,1015
384
+ 20180406,18:00,00:00,17,16,Partly cloudy.,10,300,82,1016
385
+ 20180407,00:00,06:00,16,15,Clear.,4,340,86,1015
386
+ 20180407,06:00,12:00,18,16,Partly sunny.,7,320,83,1015
387
+ 20180407,12:00,18:00,20,18,Partly sunny.,15,300,78,1015
388
+ 20180407,18:00,00:00,18,16,Passing clouds.,9,270,89,1015
389
+ 20180408,00:00,06:00,16,15,Overcast.,1,140,16,1014
390
+ 20180408,06:00,12:00,19,14,Passing clouds.,7,160,82,1015
391
+ 20180408,12:00,18:00,21,18,Scattered clouds.,21,300,71,1013
392
+ 20180408,18:00,00:00,18,16,Passing clouds.,11,310,83,1013
393
+ 20180409,00:00,06:00,16,14,Clear.,6,10,92,1012
394
+ 20180409,06:00,12:00,24,13,Scattered clouds.,4,170,58,1013
395
+ 20180409,12:00,18:00,23,19,Scattered clouds.,13,300,69,1013
396
+ 20180409,18:00,00:00,18,17,Clear.,6,150,90,1015
397
+ 20180410,00:00,06:00,18,13,Passing clouds.,3,20,91,1015
398
+ 20180410,06:00,12:00,27,14,Partly sunny.,6,0,49,1016
399
+ 20180410,12:00,18:00,28,22,Scattered clouds.,14,290,39,1015
400
+ 20180410,18:00,00:00,21,16,Passing clouds.,2,290,72,1015
401
+ 20180411,00:00,06:00,17,14,Fog.,5,320,94,1014
402
+ 20180411,06:00,12:00,19,14,Fog.,8,80,85,1015
403
+ 20180411,12:00,18:00,19,18,Scattered clouds.,15,280,73,1015
404
+ 20180411,18:00,00:00,17,16,Passing clouds.,13,260,74,1016
405
+ 20180412,00:00,06:00,16,15,Passing clouds.,15,270,82,1016
406
+ 20180412,06:00,12:00,17,15,Partly sunny.,23,290,64,1018
407
+ 20180412,12:00,18:00,19,17,Passing clouds.,24,300,49,1018
408
+ 20180412,18:00,00:00,17,14,Passing clouds.,10,310,70,1018
409
+ 20180413,00:00,06:00,13,11,Passing clouds.,6,80,84,1019
410
+ 20180413,06:00,12:00,22,12,Passing clouds.,9,0,49,1021
411
+ 20180413,12:00,18:00,21,21,Sunny.,25,300,44,1021
412
+ 20180413,18:00,00:00,21,17,Passing clouds.,15,350,37,1022
413
+ 20180414,00:00,06:00,16,12,Clear.,3,350,54,1022
414
+ 20180414,06:00,12:00,27,12,Sunny.,5,170,32,1022
415
+ 20180414,12:00,18:00,28,23,Sunny.,21,320,22,1019
416
+ 20180414,18:00,00:00,23,18,Clear.,12,350,27,1018
417
+ 20180415,00:00,06:00,14,14,Clear.,0,0,47,1016
418
+ 20180415,06:00,12:00,21,13,Partly sunny.,7,290,41,1016
419
+ 20180415,12:00,18:00,23,18,Broken clouds.,11,310,52,1014
420
+ 20180415,18:00,00:00,17,15,Passing clouds.,7,260,86,1014
421
+ 20180416,00:00,06:00,15,14,Passing clouds.,5,310,81,1015
422
+ 20180416,06:00,12:00,18,15,Broken clouds.,14,270,71,1017
423
+ 20180416,12:00,18:00,19,17,Scattered clouds.,30,300,49,1017
424
+ 20180416,18:00,00:00,16,14,Passing clouds.,27,300,50,1020
425
+ 20180417,00:00,06:00,14,12,Passing clouds.,24,320,62,1020
426
+ 20180417,06:00,12:00,17,13,Passing clouds.,12,300,55,1022
427
+ 20180417,12:00,18:00,18,16,Sunny.,28,320,44,1019
428
+ 20180417,18:00,00:00,16,12,Clear.,11,340,67,1018
429
+ 20180418,00:00,06:00,12,10,Clear.,1,130,80,1017
430
+ 20180418,06:00,12:00,16,11,Sunny.,7,140,70,1018
431
+ 20180418,12:00,18:00,17,16,Passing clouds.,15,190,76,1017
432
+ 20180418,18:00,00:00,15,14,Passing clouds.,6,280,84,1017
433
+ 20180419,00:00,06:00,13,13,Passing clouds.,17,290,66,1017
434
+ 20180419,06:00,12:00,15,13,Partly sunny.,15,260,66,1018
435
+ 20180419,12:00,18:00,17,15,Scattered clouds.,21,270,57,1018
436
+ 20180419,18:00,00:00,14,12,Passing clouds.,8,290,71,1018
437
+ 20180420,00:00,06:00,12,12,Passing clouds.,10,110,79,1019
438
+ 20180420,06:00,12:00,18,12,Passing clouds.,13,290,57,1019
439
+ 20180420,12:00,18:00,19,17,Sunny.,22,270,63,1018
440
+ 20180420,18:00,00:00,16,15,Passing clouds.,9,300,85,1019
441
+ 20180421,00:00,06:00,14,12,Passing clouds.,5,0,92,1018
442
+ 20180421,06:00,12:00,22,13,Scattered clouds.,13,330,59,1017
443
+ 20180421,12:00,18:00,20,18,Partly sunny.,17,300,64,1015
444
+ 20180421,18:00,00:00,17,16,Passing clouds.,10,320,80,1015
445
+ 20180422,00:00,06:00,,,Not Available,,,,
446
+ 20180422,06:00,12:00,21,16,Passing clouds.,10,280,67,1014
447
+ 20180422,12:00,18:00,22,17,Passing clouds.,13,180,74,1013
448
+ 20180422,18:00,00:00,16,14,Fog.,6,200,92,1014
449
+ 20180423,00:00,06:00,14,13,Fog.,8,140,96,1015
450
+ 20180423,06:00,12:00,18,13,Fog.,7,180,82,1016
451
+ 20180423,12:00,18:00,19,17,Broken clouds.,18,290,73,1015
452
+ 20180423,18:00,00:00,17,14,Partly cloudy.,6,300,83,1016
453
+ 20180424,00:00,06:00,14,13,Fog.,4,0,90,1015
454
+ 20180424,06:00,12:00,17,14,Partly sunny.,9,310,78,1017
455
+ 20180424,12:00,18:00,18,17,Broken clouds.,15,290,68,1016
456
+ 20180424,18:00,00:00,16,14,Partly cloudy.,9,310,81,1017
457
+ 20180425,00:00,06:00,14,14,Passing clouds.,5,260,79,1018
458
+ 20180425,06:00,12:00,17,14,Passing clouds.,11,290,73,1018
459
+ 20180425,12:00,18:00,18,17,Partly sunny.,17,290,65,1017
460
+ 20180425,18:00,00:00,16,15,Passing clouds.,13,320,76,1017
461
+ 20180426,00:00,06:00,15,14,Passing clouds.,9,330,76,1016
462
+ 20180426,06:00,12:00,18,15,Partly sunny.,13,270,66,1017
463
+ 20180426,12:00,18:00,18,16,Scattered clouds.,21,290,63,1016
464
+ 20180426,18:00,00:00,16,15,Passing clouds.,14,310,72,1016
465
+ 20180427,00:00,06:00,14,14,Overcast.,8,280,70,1016
466
+ 20180427,06:00,12:00,18,14,Passing clouds.,11,260,63,1017
467
+ 20180427,12:00,18:00,18,17,Sunny.,19,280,61,1015
468
+ 20180427,18:00,00:00,16,13,Passing clouds.,9,310,78,1015
469
+ 20180428,00:00,06:00,13,13,Passing clouds.,9,140,90,1015
470
+ 20180428,06:00,12:00,18,14,Partly sunny.,10,190,69,1015
471
+ 20180428,12:00,18:00,19,17,Sunny.,16,260,66,1014
472
+ 20180428,18:00,00:00,17,16,Partly sunny.,9,280,72,1014
473
+ 20180429,00:00,06:00,,,Not Available,,,,
474
+ 20180429,06:00,12:00,17,14,Partly sunny.,16,150,72,1016
475
+ 20180429,12:00,18:00,18,17,Partly sunny.,16,200,66,1015
476
+ 20180429,18:00,00:00,16,15,Passing clouds.,14,260,70,1015
477
+ 20180430,00:00,06:00,14,14,Mostly cloudy.,19,170,83,1016
478
+ 20180430,06:00,12:00,17,14,Overcast.,15,200,73,1016
479
+ 20180430,12:00,18:00,17,15,Mostly cloudy.,19,200,72,1015
480
+ 20180430,18:00,00:00,15,14,Overcast.,18,270,76,1014
481
+ 20180501,00:00,06:00,14,13,Mostly cloudy.,16,260,66,1013
482
+ 20180501,06:00,12:00,15,13,More clouds than sun.,14,230,62,1014
483
+ 20180501,12:00,18:00,16,14,More clouds than sun.,15,200,63,1014
484
+ 20180501,18:00,00:00,14,13,Mostly cloudy.,11,220,72,1014
485
+ 20180502,00:00,06:00,13,13,Partly cloudy.,10,120,81,1014
486
+ 20180502,06:00,12:00,16,13,Light rain. Fog.,9,270,78,1016
487
+ 20180502,12:00,18:00,17,16,Scattered clouds.,11,270,63,1018
488
+ 20180502,18:00,00:00,16,14,Passing clouds.,11,300,70,1020
489
+ 20180503,00:00,06:00,14,13,Passing clouds.,7,20,78,1020
490
+ 20180503,06:00,12:00,18,13,Passing clouds.,10,0,69,1021
491
+ 20180503,12:00,18:00,20,18,Passing clouds.,28,320,62,1020
492
+ 20180503,18:00,00:00,17,16,Passing clouds.,14,330,75,1020
493
+ 20180504,00:00,06:00,16,14,Passing clouds.,9,340,86,1020
494
+ 20180504,06:00,12:00,22,14,Passing clouds.,14,350,71,1020
495
+ 20180504,12:00,18:00,24,21,Passing clouds.,27,310,55,1017
496
+ 20180504,18:00,00:00,19,17,Passing clouds.,10,300,79,1017
497
+ 20180505,00:00,06:00,16,15,Fog.,8,340,92,1015
498
+ 20180505,06:00,12:00,21,14,Scattered clouds.,14,330,79,1015
499
+ 20180505,12:00,18:00,22,21,Scattered clouds.,21,310,61,1013
500
+ 20180505,18:00,00:00,20,17,Passing clouds.,11,330,68,1013
501
+ 20180506,00:00,06:00,16,14,Clear.,0,0,82,1014
502
+ 20180506,06:00,12:00,21,16,Scattered clouds.,12,300,71,1015
503
+ 20180506,12:00,18:00,21,18,Scattered clouds.,19,290,67,1015
504
+ 20180506,18:00,00:00,17,15,Partly cloudy.,7,280,76,1017
505
+ 20180507,00:00,06:00,16,16,Overcast.,7,270,79,1017
506
+ 20180507,06:00,12:00,19,14,Passing clouds.,8,210,73,1018
507
+ 20180507,12:00,18:00,18,17,Passing clouds.,14,240,72,1017
508
+ 20180507,18:00,00:00,16,14,Passing clouds.,4,230,82,1016
509
+ 20180508,00:00,06:00,15,14,Passing clouds.,3,220,88,1015
510
+ 20180508,06:00,12:00,16,14,Fog.,11,170,85,1017
511
+ 20180508,12:00,18:00,18,17,Broken clouds.,14,210,73,1015
512
+ 20180508,18:00,00:00,16,16,Passing clouds.,6,210,79,1015
513
+ 20180509,00:00,06:00,16,16,Overcast.,10,160,79,1015
514
+ 20180509,06:00,12:00,18,15,Fog.,9,180,78,1015
515
+ 20180509,12:00,18:00,19,18,Passing clouds.,14,270,66,1012
516
+ 20180509,18:00,00:00,18,16,Passing clouds.,4,260,81,1012
517
+ 20180510,00:00,06:00,16,16,Low clouds.,6,170,83,1011
518
+ 20180510,06:00,12:00,18,16,Low clouds.,9,180,81,1012
519
+ 20180510,12:00,18:00,19,17,Overcast.,15,190,73,1011
520
+ 20180510,18:00,00:00,17,16,Passing clouds.,11,170,79,1011
521
+ 20180511,00:00,06:00,16,15,Overcast.,19,170,76,1011
522
+ 20180511,06:00,12:00,16,16,Overcast.,22,160,75,1012
523
+ 20180511,12:00,18:00,16,15,More clouds than sun.,23,200,75,1012
524
+ 20180511,18:00,00:00,15,15,Mostly cloudy.,18,190,74,1012
525
+ 20180512,00:00,06:00,15,15,Overcast.,9,240,64,1013
526
+ 20180512,06:00,12:00,17,14,Broken clouds.,11,70,74,1015
527
+ 20180512,12:00,18:00,18,17,Broken clouds.,13,250,66,1015
528
+ 20180512,18:00,00:00,17,16,Passing clouds.,7,250,69,1016
529
+ 20180513,00:00,06:00,16,16,Mostly cloudy.,9,210,72,1016
530
+ 20180513,06:00,12:00,18,16,Scattered clouds.,13,150,59,1017
531
+ 20180513,12:00,18:00,20,18,Passing clouds.,21,280,54,1016
532
+ 20180513,18:00,00:00,17,16,Passing clouds.,13,330,69,1015
533
+ 20180514,00:00,06:00,16,16,Overcast.,7,340,73,1015
534
+ 20180514,06:00,12:00,20,16,Partly sunny.,10,310,67,1015
535
+ 20180514,12:00,18:00,19,18,Partly sunny.,24,300,62,1015
536
+ 20180514,18:00,00:00,17,16,Passing clouds.,16,310,72,1015
537
+ 20180515,00:00,06:00,17,16,Passing clouds.,5,300,70,1016
538
+ 20180515,06:00,12:00,19,16,Partly sunny.,11,0,63,1017
539
+ 20180515,12:00,18:00,20,18,Passing clouds.,27,310,59,1016
540
+ 20180515,18:00,00:00,17,16,Passing clouds.,18,310,71,1016
541
+ 20180516,00:00,06:00,17,16,Overcast.,9,300,70,1016
542
+ 20180516,06:00,12:00,19,17,Overcast.,12,260,63,1017
543
+ 20180516,12:00,18:00,19,19,Passing clouds.,21,260,60,1016
544
+ 20180516,18:00,00:00,18,16,Passing clouds.,13,310,73,1016
545
+ 20180517,00:00,06:00,16,15,Passing clouds.,9,310,76,1015
546
+ 20180517,06:00,12:00,18,16,Partly sunny.,14,210,64,1016
547
+ 20180517,12:00,18:00,18,17,Overcast.,15,220,66,1016
548
+ 20180517,18:00,00:00,16,16,Mostly cloudy.,7,170,71,1015
549
+ 20180518,00:00,06:00,16,16,Mostly cloudy.,7,180,76,1014
550
+ 20180518,06:00,12:00,17,16,Mostly cloudy.,11,260,72,1015
551
+ 20180518,12:00,18:00,18,17,Partly sunny.,13,250,68,1014
552
+ 20180518,18:00,00:00,17,16,Partly sunny.,9,210,75,1013
553
+ 20180519,00:00,06:00,,,Not Available,,,,
554
+ 20180519,06:00,12:00,17,16,Overcast.,10,190,72,1014
555
+ 20180519,12:00,18:00,18,17,Mostly cloudy.,15,260,70,1013
556
+ 20180519,18:00,00:00,17,16,Overcast.,9,260,75,1013
557
+ 20180520,00:00,06:00,16,16,Overcast.,8,200,80,1013
558
+ 20180520,06:00,12:00,17,16,Overcast.,10,210,78,1014
559
+ 20180520,12:00,18:00,18,17,Low clouds.,18,280,76,1013
560
+ 20180520,18:00,00:00,17,15,Mostly cloudy.,11,250,77,1012
561
+ 20180521,00:00,06:00,16,15,Overcast.,10,200,79,1012
562
+ 20180521,06:00,12:00,17,16,Partly sunny.,17,200,71,1012
563
+ 20180521,12:00,18:00,17,14,Cloudy.,17,170,77,1012
564
+ 20180521,18:00,00:00,16,16,Mostly cloudy.,11,210,73,1012
565
+ 20180522,00:00,06:00,16,15,Partly cloudy.,10,220,68,1012
566
+ 20180522,06:00,12:00,18,16,Partly sunny.,13,180,65,1014
567
+ 20180522,12:00,18:00,19,17,Passing clouds.,15,260,60,1013
568
+ 20180522,18:00,00:00,17,16,Passing clouds.,6,260,71,1013
569
+ 20180523,00:00,06:00,16,15,Passing clouds.,10,180,76,1014
570
+ 20180523,06:00,12:00,17,16,Partly sunny.,8,200,78,1015
571
+ 20180523,12:00,18:00,19,18,Broken clouds.,19,280,67,1015
572
+ 20180523,18:00,00:00,17,16,Passing clouds.,12,270,74,1016
573
+ 20180524,00:00,06:00,16,16,Mostly cloudy.,9,280,79,1017
574
+ 20180524,06:00,12:00,17,16,Mostly cloudy.,11,300,73,1019
575
+ 20180524,12:00,18:00,19,18,Partly sunny.,18,290,64,1019
576
+ 20180524,18:00,00:00,17,16,Passing clouds.,10,300,69,1019
577
+ 20180525,00:00,06:00,16,16,Passing clouds.,9,310,70,1019
578
+ 20180525,06:00,12:00,19,17,Broken clouds.,20,300,64,1020
579
+ 20180525,12:00,18:00,20,18,Scattered clouds.,25,300,61,1019
580
+ 20180525,18:00,00:00,18,17,Partly cloudy.,20,310,72,1018
581
+ 20180526,00:00,06:00,16,16,Partly cloudy.,16,320,76,1017
582
+ 20180526,06:00,12:00,18,16,Partly sunny.,15,290,67,1017
583
+ 20180526,12:00,18:00,19,17,Broken clouds.,17,270,66,1016
584
+ 20180526,18:00,00:00,17,16,Passing clouds.,11,260,73,1016
585
+ 20180527,00:00,06:00,16,16,Overcast.,10,240,73,1014
586
+ 20180527,06:00,12:00,19,16,Partly sunny.,9,200,66,1014
587
+ 20180527,12:00,18:00,19,18,Sunny.,16,280,63,1013
588
+ 20180527,18:00,00:00,18,17,Passing clouds.,9,260,74,1014
589
+ 20180528,00:00,06:00,17,17,Overcast.,0,0,73,1014
590
+ 20180528,06:00,12:00,18,17,Overcast.,9,290,73,1015
591
+ 20180528,12:00,18:00,20,18,Partly sunny.,18,280,67,1013
592
+ 20180528,18:00,00:00,17,16,Overcast.,8,250,79,1013
593
+ 20180529,00:00,06:00,16,16,Low clouds.,5,210,83,1012
594
+ 20180529,06:00,12:00,17,16,Overcast.,10,210,80,1011
595
+ 20180529,12:00,18:00,17,17,Overcast.,12,210,79,1011
596
+ 20180529,18:00,00:00,17,16,Overcast.,10,230,79,1011
597
+ 20180530,00:00,06:00,16,16,Mostly cloudy.,11,170,81,1011
598
+ 20180530,06:00,12:00,19,16,Overcast.,15,210,74,1012
599
+ 20180530,12:00,18:00,19,18,Scattered clouds.,18,200,71,1011
600
+ 20180530,18:00,00:00,17,17,Passing clouds.,8,200,74,1012
601
+ 20180531,00:00,06:00,17,15,Passing clouds.,9,230,85,1012
602
+ 20180531,06:00,12:00,19,15,Partly sunny.,6,240,85,1013
603
+ 20180531,12:00,18:00,21,18,Partly sunny.,19,290,65,1014
604
+ 20180531,18:00,00:00,18,17,Overcast.,11,350,72,1014
605
+ 20180601,00:00,06:00,17,16,Passing clouds.,9,240,74,1014
606
+ 20180601,06:00,12:00,19,17,Passing clouds.,11,210,67,1015
607
+ 20180601,12:00,18:00,21,19,Passing clouds.,17,260,65,1015
608
+ 20180601,18:00,00:00,18,16,Passing clouds.,10,320,78,1014
609
+ 20180602,00:00,06:00,17,14,Clear.,5,0,87,1014
610
+ 20180602,06:00,12:00,20,16,Passing clouds.,9,250,75,1016
611
+ 20180602,12:00,18:00,21,19,Passing clouds.,15,270,68,1014
612
+ 20180602,18:00,00:00,19,17,Passing clouds.,6,270,82,1013
613
+ 20180603,00:00,06:00,17,17,Passing clouds.,7,320,83,1013
614
+ 20180603,06:00,12:00,21,18,Passing clouds.,12,290,70,1013
615
+ 20180603,12:00,18:00,21,19,Passing clouds.,17,280,68,1012
616
+ 20180603,18:00,00:00,19,17,Passing clouds.,8,270,80,1012
617
+ 20180604,00:00,06:00,17,16,Low clouds.,4,210,84,1012
618
+ 20180604,06:00,12:00,18,17,Overcast.,11,210,80,1012
619
+ 20180604,12:00,18:00,19,18,Partly sunny.,13,210,72,1012
620
+ 20180604,18:00,00:00,17,17,Overcast.,11,180,79,1012
621
+ 20180605,00:00,06:00,17,16,Overcast.,11,190,82,1012
622
+ 20180605,06:00,12:00,18,16,Overcast.,16,190,77,1013
623
+ 20180605,12:00,18:00,19,18,Partly sunny.,14,200,68,1013
624
+ 20180605,18:00,00:00,18,17,Passing clouds.,7,230,73,1012
625
+ 20180606,00:00,06:00,17,17,Passing clouds.,5,280,73,1012
626
+ 20180606,06:00,12:00,20,17,Overcast.,10,270,71,1013
627
+ 20180606,12:00,18:00,21,18,Passing clouds.,16,280,65,1012
628
+ 20180606,18:00,00:00,18,17,Passing clouds.,10,300,72,1012
629
+ 20180607,00:00,06:00,17,16,Overcast.,5,230,71,1012
630
+ 20180607,06:00,12:00,20,17,Passing clouds.,11,210,64,1014
631
+ 20180607,12:00,18:00,20,19,Passing clouds.,15,260,63,1014
632
+ 20180607,18:00,00:00,18,17,Passing clouds.,10,310,76,1014
633
+ 20180608,00:00,06:00,17,15,Passing clouds.,1,100,84,1013
634
+ 20180608,06:00,12:00,22,17,Partly sunny.,5,290,71,1014
635
+ 20180608,12:00,18:00,22,21,Sunny.,15,260,66,1012
636
+ 20180608,18:00,00:00,20,18,Passing clouds.,7,290,80,1013
637
+ 20180609,00:00,06:00,18,18,Low clouds.,0,0,87,1012
638
+ 20180609,06:00,12:00,22,17,Fog.,10,180,80,1013
639
+ 20180609,12:00,18:00,23,21,Sunny.,13,290,66,1013
640
+ 20180609,18:00,00:00,20,18,Passing clouds.,7,260,80,1012
641
+ 20180610,00:00,06:00,18,18,Mild.,14,180,78,1011
642
+ 20180610,06:00,12:00,19,18,Sunny.,14,210,73,1012
643
+ 20180610,12:00,18:00,21,20,Passing clouds.,14,240,69,1011
644
+ 20180610,18:00,00:00,19,18,Passing clouds.,8,270,79,1010
645
+ 20180611,00:00,06:00,18,17,Low clouds.,9,150,85,1009
646
+ 20180611,06:00,12:00,20,18,Fog.,9,180,78,1010
647
+ 20180611,12:00,18:00,21,20,Passing clouds.,14,200,70,1009
648
+ 20180611,18:00,00:00,21,18,Passing clouds.,3,270,80,1009
649
+ 20180612,00:00,06:00,19,17,Passing clouds.,2,250,86,1009
650
+ 20180612,06:00,12:00,21,19,Overcast.,7,220,76,1011
651
+ 20180612,12:00,18:00,21,19,Scattered clouds.,14,250,69,1010
652
+ 20180612,18:00,00:00,19,18,Passing clouds.,6,260,80,1010
653
+ 20180613,00:00,06:00,18,17,Passing clouds.,2,280,85,1009
654
+ 20180613,06:00,12:00,21,18,Passing clouds.,9,270,78,1010
655
+ 20180613,12:00,18:00,21,21,Passing clouds.,14,270,68,1010
656
+ 20180613,18:00,00:00,21,18,Passing clouds.,8,260,81,1010
657
+ 20180614,00:00,06:00,18,18,Overcast.,7,250,82,1009
658
+ 20180614,06:00,12:00,22,18,Overcast.,10,200,76,1011
659
+ 20180614,12:00,18:00,23,21,Broken clouds.,16,260,68,1009
660
+ 20180614,18:00,00:00,20,19,Passing clouds.,6,230,80,1009
661
+ 20180615,00:00,06:00,19,19,Overcast.,6,200,82,1009
662
+ 20180615,06:00,12:00,21,19,Broken clouds.,11,210,74,1010
663
+ 20180615,12:00,18:00,22,20,Broken clouds.,16,260,65,1008
664
+ 20180615,18:00,00:00,19,18,Overcast.,13,200,76,1008
665
+ 20180616,00:00,06:00,18,17,Overcast.,13,190,76,1009
666
+ 20180616,06:00,12:00,18,17,Overcast.,14,210,71,1011
667
+ 20180616,12:00,18:00,18,17,Cloudy.,15,210,70,1012
668
+ 20180616,18:00,00:00,17,17,Broken clouds.,11,230,67,1012
669
+ 20180617,00:00,06:00,17,17,Overcast.,14,230,62,1012
670
+ 20180617,06:00,12:00,19,17,Overcast.,10,250,59,1014
671
+ 20180617,12:00,18:00,20,19,Scattered clouds.,16,240,55,1015
672
+ 20180617,18:00,00:00,18,17,Passing clouds.,11,320,71,1015
673
+ 20180618,00:00,06:00,18,18,Overcast.,9,320,67,1015
674
+ 20180618,06:00,12:00,22,18,Partly sunny.,14,310,57,1016
675
+ 20180618,12:00,18:00,22,20,Scattered clouds.,25,300,60,1016
676
+ 20180618,18:00,00:00,19,18,Passing clouds.,18,310,72,1015
677
+ 20180619,00:00,06:00,18,18,Overcast.,11,310,74,1014
678
+ 20180619,06:00,12:00,20,18,Overcast.,12,330,72,1015
679
+ 20180619,12:00,18:00,21,19,Scattered clouds.,16,260,67,1014
680
+ 20180619,18:00,00:00,18,18,Overcast.,8,280,76,1014
681
+ 20180620,00:00,06:00,18,17,Passing clouds.,4,280,80,1013
682
+ 20180620,06:00,12:00,19,18,Overcast.,8,180,80,1014
683
+ 20180620,12:00,18:00,21,18,Partly sunny.,14,240,74,1013
684
+ 20180620,18:00,00:00,18,17,Overcast.,6,190,82,1014
685
+ 20180621,00:00,06:00,17,17,Low clouds.,7,220,87,1013
686
+ 20180621,06:00,12:00,19,17,Fog.,10,210,82,1014
687
+ 20180621,12:00,18:00,20,18,Overcast.,15,210,75,1013
688
+ 20180621,18:00,00:00,18,17,Overcast.,6,210,83,1013
689
+ 20180622,00:00,06:00,17,17,Low clouds.,4,250,84,1012
690
+ 20180622,06:00,12:00,22,18,Overcast.,12,280,76,1012
691
+ 20180622,12:00,18:00,22,19,Scattered clouds.,18,290,70,1010
692
+ 20180622,18:00,00:00,19,17,Low clouds.,10,210,82,1010
693
+ 20180623,00:00,06:00,17,17,Low clouds.,9,200,84,1010
694
+ 20180623,06:00,12:00,18,17,Overcast.,19,190,80,1011
695
+ 20180623,12:00,18:00,19,18,Overcast.,19,210,75,1012
696
+ 20180623,18:00,00:00,18,17,Overcast.,16,190,78,1011
697
+ 20180624,00:00,06:00,17,17,Overcast.,15,150,78,1012
698
+ 20180624,06:00,12:00,20,17,Overcast.,15,190,73,1014
699
+ 20180624,12:00,18:00,21,18,Scattered clouds.,17,210,67,1014
700
+ 20180624,18:00,00:00,18,17,Partly sunny.,7,0,73,1013
701
+ 20180625,00:00,06:00,18,17,Overcast.,5,280,77,1014
702
+ 20180625,06:00,12:00,21,18,Passing clouds.,12,290,67,1015
703
+ 20180625,12:00,18:00,21,20,Passing clouds.,19,290,64,1014
704
+ 20180625,18:00,00:00,19,18,Passing clouds.,13,320,76,1013
705
+ 20180626,00:00,06:00,19,19,Passing clouds.,7,290,76,1014
706
+ 20180626,06:00,12:00,22,19,Passing clouds.,14,300,67,1015
707
+ 20180626,12:00,18:00,23,21,Sunny.,26,300,62,1014
708
+ 20180626,18:00,00:00,20,18,Passing clouds.,15,320,80,1014
709
+ 20180627,00:00,06:00,18,18,Overcast.,7,300,82,1013
710
+ 20180627,06:00,12:00,21,18,Passing clouds.,10,260,72,1014
711
+ 20180627,12:00,18:00,22,21,Passing clouds.,16,300,65,1014
712
+ 20180627,18:00,00:00,20,18,Passing clouds.,15,310,79,1013
713
+ 20180628,00:00,06:00,19,18,Passing clouds.,5,280,77,1013
714
+ 20180628,06:00,12:00,20,18,Overcast.,12,260,72,1014
715
+ 20180628,12:00,18:00,20,19,Scattered clouds.,15,210,68,1013
716
+ 20180628,18:00,00:00,18,17,Passing clouds.,9,170,75,1013
717
+ 20180629,00:00,06:00,18,17,Overcast.,15,160,76,1013
718
+ 20180629,06:00,12:00,19,17,Overcast.,18,170,75,1014
719
+ 20180629,12:00,18:00,19,18,Partly sunny.,15,210,72,1013
720
+ 20180629,18:00,00:00,18,17,Overcast.,13,200,77,1013
721
+ 20180630,00:00,06:00,17,17,Overcast.,12,150,74,1014
722
+ 20180630,06:00,12:00,19,18,Passing clouds.,15,210,71,1015
723
+ 20180630,12:00,18:00,19,18,Scattered clouds.,17,210,69,1015
724
+ 20180630,18:00,00:00,17,17,Overcast.,8,210,75,1015
725
+ 20180701,00:00,06:00,17,17,Overcast.,5,190,77,1015
726
+ 20180701,06:00,12:00,20,17,Overcast.,10,240,73,1016
727
+ 20180701,12:00,18:00,21,20,Passing clouds.,15,280,65,1016
728
+ 20180701,18:00,00:00,19,18,Passing clouds.,11,280,75,1015
729
+ 20180702,00:00,06:00,19,18,Overcast.,7,290,76,1015
730
+ 20180702,06:00,12:00,22,19,Passing clouds.,11,290,67,1015
731
+ 20180702,12:00,18:00,23,21,Passing clouds.,24,310,63,1013
732
+ 20180702,18:00,00:00,21,19,Passing clouds.,14,310,76,1013
733
+ 20180703,00:00,06:00,19,18,Overcast.,6,230,74,1014
734
+ 20180703,06:00,12:00,21,18,Passing clouds.,12,270,66,1014
735
+ 20180703,12:00,18:00,22,21,Passing clouds.,15,280,61,1013
736
+ 20180703,18:00,00:00,19,18,Passing clouds.,6,270,74,1014
737
+ 20180704,00:00,06:00,18,18,Overcast.,4,260,76,1015
738
+ 20180704,06:00,12:00,22,19,Sunny.,6,0,68,1016
739
+ 20180704,12:00,18:00,22,21,Sunny.,16,270,65,1016
740
+ 20180704,18:00,00:00,21,19,Sunny.,12,310,76,1016
741
+ 20180705,00:00,06:00,20,19,Passing clouds.,10,330,80,1017
742
+ 20180705,06:00,12:00,24,20,Partly sunny.,20,340,70,1017
743
+ 20180705,12:00,18:00,24,23,Scattered clouds.,20,300,67,1015
744
+ 20180705,18:00,00:00,22,20,Passing clouds.,8,310,80,1015
745
+ 20180706,00:00,06:00,21,20,Passing clouds.,9,350,84,1013
746
+ 20180706,06:00,12:00,29,21,Passing clouds.,16,330,64,1012
747
+ 20180706,12:00,18:00,34,22,Scattered clouds.,22,340,49,1009
748
+ 20180706,18:00,00:00,22,19,Clear.,10,190,86,1010
749
+ 20180707,00:00,06:00,21,20,Clear.,3,190,82,1009
750
+ 20180707,06:00,12:00,24,20,Sunny.,7,180,80,1011
751
+ 20180707,12:00,18:00,25,23,Scattered clouds.,13,180,72,1010
752
+ 20180707,18:00,00:00,24,23,Clear.,2,140,63,1010
753
+ 20180708,00:00,06:00,24,21,Clear.,2,200,74,1010
754
+ 20180708,06:00,12:00,25,23,Passing clouds.,10,180,73,1012
755
+ 20180708,12:00,18:00,26,23,Broken clouds.,9,180,73,1012
756
+ 20180708,18:00,00:00,24,23,Partly sunny.,6,190,84,1012
757
+ 20180709,00:00,06:00,22,22,Fog.,0,0,91,1012
758
+ 20180709,06:00,12:00,25,23,Broken clouds.,6,200,79,1014
759
+ 20180709,12:00,18:00,25,23,Broken clouds.,12,210,80,1014
760
+ 20180709,18:00,00:00,22,21,Partly cloudy.,9,200,86,1014
761
+ 20180710,00:00,06:00,23,21,Passing clouds.,10,170,85,1014
762
+ 20180710,06:00,12:00,23,22,Broken clouds.,15,180,81,1015
763
+ 20180710,12:00,18:00,25,23,Partly sunny.,12,190,74,1013
764
+ 20180710,18:00,00:00,23,21,Broken clouds.,8,220,80,1013
765
+ 20180711,00:00,06:00,22,21,Passing clouds.,3,180,82,1013
766
+ 20180711,06:00,12:00,24,22,Scattered clouds.,8,330,76,1012
767
+ 20180711,12:00,18:00,23,22,Scattered clouds.,16,210,74,1012
768
+ 20180711,18:00,00:00,22,21,Passing clouds.,6,210,80,1012
769
+ 20180712,00:00,06:00,21,21,Passing clouds.,3,280,84,1013
770
+ 20180712,06:00,12:00,23,21,Partly sunny.,9,210,78,1014
771
+ 20180712,12:00,18:00,24,23,Scattered clouds.,15,230,70,1014
772
+ 20180712,18:00,00:00,22,21,Passing clouds.,11,280,79,1015
773
+ 20180713,00:00,06:00,22,21,Passing clouds.,11,300,82,1015
774
+ 20180713,06:00,12:00,25,21,Scattered clouds.,15,310,74,1016
775
+ 20180713,12:00,18:00,24,22,Partly sunny.,18,270,71,1016
776
+ 20180713,18:00,00:00,22,21,Scattered clouds.,13,310,78,1016
777
+ 20180714,00:00,06:00,21,21,Overcast.,12,300,83,1015
778
+ 20180714,06:00,12:00,23,21,Overcast.,11,300,83,1015
779
+ 20180714,12:00,18:00,24,23,Scattered clouds.,18,290,71,1014
780
+ 20180714,18:00,00:00,22,21,Passing clouds.,6,270,82,1014
781
+ 20180715,00:00,06:00,21,21,Overcast.,3,170,84,1014
782
+ 20180715,06:00,12:00,23,21,Partly sunny.,11,220,79,1014
783
+ 20180715,12:00,18:00,24,21,Scattered clouds.,16,200,73,1014
784
+ 20180715,18:00,00:00,20,19,Partly sunny.,12,190,80,1014
785
+ 20180716,00:00,06:00,19,19,Low clouds.,5,170,84,1014
786
+ 20180716,06:00,12:00,21,19,Overcast.,11,200,82,1015
787
+ 20180716,12:00,18:00,23,21,Broken clouds.,14,250,76,1014
788
+ 20180716,18:00,00:00,22,21,Passing clouds.,8,230,79,1014
789
+ 20180717,00:00,06:00,21,21,Overcast.,8,230,80,1014
790
+ 20180717,06:00,12:00,23,21,Overcast.,11,280,78,1015
791
+ 20180717,12:00,18:00,24,22,Partly sunny.,19,290,71,1015
792
+ 20180717,18:00,00:00,21,19,Broken clouds.,9,210,82,1015
793
+ 20180718,00:00,06:00,19,19,Passing clouds.,7,210,85,1015
794
+ 20180718,06:00,12:00,22,19,Broken clouds.,14,210,81,1016
795
+ 20180718,12:00,18:00,23,21,Broken clouds.,14,240,72,1015
796
+ 20180718,18:00,00:00,21,19,Passing clouds.,6,220,80,1015
797
+ 20180719,00:00,06:00,20,19,Passing clouds.,5,200,84,1014
798
+ 20180719,06:00,12:00,23,19,Scattered clouds.,10,210,78,1015
799
+ 20180719,12:00,18:00,23,22,Passing clouds.,15,230,71,1014
800
+ 20180719,18:00,00:00,21,20,Passing clouds.,7,220,79,1014
801
+ 20180720,00:00,06:00,21,20,Passing clouds.,5,280,84,1013
802
+ 20180720,06:00,12:00,22,21,Partly sunny.,12,230,81,1015
803
+ 20180720,12:00,18:00,23,22,Passing clouds.,15,250,74,1014
804
+ 20180720,18:00,00:00,21,21,Passing clouds.,10,290,81,1014
805
+ 20180721,00:00,06:00,22,21,Overcast.,10,260,85,1015
806
+ 20180721,06:00,12:00,26,22,Scattered clouds.,16,310,69,1015
807
+ 20180721,12:00,18:00,26,23,Broken clouds.,23,300,66,1015
808
+ 20180721,18:00,00:00,23,22,Broken clouds.,13,280,76,1015
809
+ 20180722,00:00,06:00,22,22,Passing clouds.,11,330,82,1016
810
+ 20180722,06:00,12:00,26,22,Scattered clouds.,16,310,71,1016
811
+ 20180722,12:00,18:00,27,25,Passing clouds.,23,320,64,1015
812
+ 20180722,18:00,00:00,24,23,Passing clouds.,15,310,78,1015
813
+ 20180723,00:00,06:00,22,22,Clear.,9,320,86,1014
814
+ 20180723,06:00,12:00,27,22,Passing clouds.,10,290,74,1014
815
+ 20180723,12:00,18:00,27,26,Passing clouds.,18,290,65,1012
816
+ 20180723,18:00,00:00,24,22,Clear.,9,300,80,1012
817
+ 20180724,00:00,06:00,22,20,Passing clouds.,2,280,90,1012
818
+ 20180724,06:00,12:00,24,21,Passing clouds.,10,180,82,1013
819
+ 20180724,12:00,18:00,27,24,Passing clouds.,13,280,71,1012
820
+ 20180724,18:00,00:00,23,21,Passing clouds.,12,170,84,1014
821
+ 20180725,00:00,06:00,21,19,Partly cloudy.,6,150,90,1013
822
+ 20180725,06:00,12:00,23,21,Fog.,11,160,88,1015
823
+ 20180725,12:00,18:00,23,22,Scattered clouds.,15,210,78,1013
824
+ 20180725,18:00,00:00,21,20,Low clouds.,7,250,86,1014
825
+ 20180726,00:00,06:00,21,20,Fog.,2,160,91,1013
826
+ 20180726,06:00,12:00,23,21,Fog.,12,160,85,1015
827
+ 20180726,12:00,18:00,23,23,Partly sunny.,14,210,76,1014
828
+ 20180726,18:00,00:00,22,20,Passing clouds.,7,230,81,1013
829
+ 20180727,00:00,06:00,21,20,Passing clouds.,7,340,84,1011
830
+ 20180727,06:00,12:00,26,23,Scattered clouds.,13,300,72,1012
831
+ 20180727,12:00,18:00,27,22,Scattered clouds.,15,300,72,1011
832
+ 20180727,18:00,00:00,22,21,Low clouds.,9,170,81,1012
833
+ 20180728,00:00,06:00,21,21,Low clouds.,9,180,84,1012
834
+ 20180728,06:00,12:00,23,21,Fog.,12,190,81,1014
835
+ 20180728,12:00,18:00,23,22,Scattered clouds.,16,210,73,1013
836
+ 20180728,18:00,00:00,22,21,Passing clouds.,2,210,78,1014
837
+ 20180729,00:00,06:00,21,21,Passing clouds.,6,250,84,1014
838
+ 20180729,06:00,12:00,27,22,Scattered clouds.,9,0,71,1015
839
+ 20180729,12:00,18:00,29,24,Scattered clouds.,12,270,57,1014
840
+ 20180729,18:00,00:00,24,22,Passing clouds.,11,320,78,1014
841
+ 20180730,00:00,06:00,22,22,Clear.,6,310,81,1013
842
+ 20180730,06:00,12:00,27,23,Scattered clouds.,10,340,73,1014
843
+ 20180730,12:00,18:00,27,24,Scattered clouds.,18,300,70,1013
844
+ 20180730,18:00,00:00,24,22,Passing clouds.,10,270,79,1013
845
+ 20180731,00:00,06:00,22,22,Passing clouds.,2,250,86,1013
846
+ 20180731,06:00,12:00,26,22,Scattered clouds.,9,280,76,1013
847
+ 20180731,12:00,18:00,27,24,Scattered clouds.,15,260,67,1013
848
+ 20180731,18:00,00:00,24,23,Passing clouds.,7,280,78,1013
849
+ 20180801,00:00,06:00,23,22,Passing clouds.,4,290,78,1013
850
+ 20180801,06:00,12:00,27,23,Scattered clouds.,10,310,71,1014
851
+ 20180801,12:00,18:00,28,26,Scattered clouds.,18,290,65,1012
852
+ 20180801,18:00,00:00,24,23,Passing clouds.,9,300,79,1013
853
+ 20180802,00:00,06:00,23,22,Passing clouds.,3,260,86,1012
854
+ 20180802,06:00,12:00,26,23,Scattered clouds.,7,280,79,1013
855
+ 20180802,12:00,18:00,27,26,Scattered clouds.,15,250,65,1012
856
+ 20180802,18:00,00:00,24,22,Passing clouds.,7,270,80,1012
857
+ 20180803,00:00,06:00,23,22,Passing clouds.,2,280,86,1012
858
+ 20180803,06:00,12:00,26,23,Passing clouds.,11,180,77,1013
859
+ 20180803,12:00,18:00,27,24,Passing clouds.,15,280,70,1012
860
+ 20180803,18:00,00:00,24,23,Clear.,8,270,76,1011
861
+ 20180804,00:00,06:00,22,22,Clear.,4,170,86,1011
862
+ 20180804,06:00,12:00,25,23,Passing clouds.,10,190,77,1012
863
+ 20180804,12:00,18:00,26,24,Sunny.,13,260,68,1010
864
+ 20180804,18:00,00:00,23,22,Passing clouds.,7,0,76,1010
865
+ 20180805,00:00,06:00,21,21,Overcast.,1,0,84,1010
866
+ 20180805,06:00,12:00,24,22,Passing clouds.,7,200,77,1011
867
+ 20180805,12:00,18:00,26,25,Sunny.,16,270,66,1010
868
+ 20180805,18:00,00:00,25,23,Passing clouds.,14,320,76,1010
869
+ 20180806,00:00,06:00,22,21,Passing clouds.,0,0,88,1010
870
+ 20180806,06:00,12:00,26,22,Sunny.,8,160,77,1011
871
+ 20180806,12:00,18:00,27,26,Sunny.,14,280,64,1009
872
+ 20180806,18:00,00:00,24,22,Passing clouds.,6,280,83,1008
873
+ 20180807,00:00,06:00,22,21,Passing clouds.,0,0,92,1008
874
+ 20180807,06:00,12:00,27,22,Partly sunny.,16,170,80,1010
875
+ 20180807,12:00,18:00,29,27,Passing clouds.,12,260,53,1007
876
+ 20180807,18:00,00:00,25,23,Passing clouds.,3,210,81,1009
877
+ 20180808,00:00,06:00,23,23,Passing clouds.,5,170,90,1011
878
+ 20180808,06:00,12:00,28,23,Passing clouds.,7,190,66,1013
879
+ 20180808,12:00,18:00,30,28,Passing clouds.,11,240,50,1012
880
+ 20180808,18:00,00:00,27,25,Passing clouds.,6,220,55,1012
881
+ 20180809,00:00,06:00,26,24,Passing clouds.,11,0,79,1012
882
+ 20180809,06:00,12:00,28,24,Scattered clouds.,12,340,71,1012
883
+ 20180809,12:00,18:00,30,28,Broken clouds.,10,310,54,1012
884
+ 20180809,18:00,00:00,27,25,Partly cloudy.,6,310,71,1014
885
+ 20180810,00:00,06:00,26,24,Passing clouds.,6,210,83,1014
886
+ 20180810,06:00,12:00,28,24,Passing clouds.,8,180,79,1015
887
+ 20180810,12:00,18:00,29,27,Passing clouds.,13,230,54,1015
888
+ 20180810,18:00,00:00,27,26,Clear.,8,280,64,1015
889
+ 20180811,00:00,06:00,25,25,Clear.,0,0,71,1015
890
+ 20180811,06:00,12:00,29,24,Passing clouds.,14,320,54,1015
891
+ 20180811,12:00,18:00,29,27,Passing clouds.,22,300,60,1013
892
+ 20180811,18:00,00:00,26,24,Passing clouds.,13,310,80,1014
893
+ 20180812,00:00,06:00,23,23,Passing clouds.,11,320,85,1015
894
+ 20180812,06:00,12:00,27,24,Passing clouds.,11,210,76,1016
895
+ 20180812,12:00,18:00,27,25,Scattered clouds.,19,270,66,1014
896
+ 20180812,18:00,00:00,24,23,Passing clouds.,8,300,78,1014
897
+ 20180813,00:00,06:00,22,21,Passing clouds.,3,210,89,1015
898
+ 20180813,06:00,12:00,26,22,Passing clouds.,10,260,72,1015
899
+ 20180813,12:00,18:00,26,24,Scattered clouds.,19,260,66,1013
900
+ 20180813,18:00,00:00,23,22,Passing clouds.,10,310,77,1013
901
+ 20180814,00:00,06:00,22,22,Passing clouds.,4,320,77,1012
902
+ 20180814,06:00,12:00,26,22,Partly sunny.,11,270,68,1013
903
+ 20180814,12:00,18:00,26,24,Scattered clouds.,19,290,67,1011
904
+ 20180814,18:00,00:00,23,22,Passing clouds.,8,260,79,1012
905
+ 20180815,00:00,06:00,22,22,Passing clouds.,6,310,78,1012
906
+ 20180815,06:00,12:00,24,22,Partly sunny.,8,270,74,1013
907
+ 20180815,12:00,18:00,26,23,Broken clouds.,17,240,67,1013
908
+ 20180815,18:00,00:00,23,22,Passing clouds.,6,200,76,1013
909
+ 20180816,00:00,06:00,22,22,Passing clouds.,3,220,78,1014
910
+ 20180816,06:00,12:00,24,22,Overcast.,8,210,74,1016
911
+ 20180816,12:00,18:00,26,23,Partly sunny.,14,250,68,1016
912
+ 20180816,18:00,00:00,23,22,Passing clouds.,7,250,76,1017
913
+ 20180817,00:00,06:00,22,22,Overcast.,7,280,78,1017
914
+ 20180817,06:00,12:00,24,22,Overcast.,10,270,75,1018
915
+ 20180817,12:00,18:00,26,25,Scattered clouds.,17,270,68,1016
916
+ 20180817,18:00,00:00,23,23,Passing clouds.,9,290,80,1017
917
+ 20180818,00:00,06:00,,,Not Available,,,,
918
+ 20180818,06:00,12:00,24,23,Overcast.,11,300,80,1018
919
+ 20180818,12:00,18:00,26,25,Passing clouds.,15,270,71,1015
920
+ 20180818,18:00,00:00,23,22,Passing clouds.,12,310,80,1015
921
+ 20180819,00:00,06:00,22,22,Passing clouds.,8,310,82,1014
922
+ 20180819,06:00,12:00,25,22,Passing clouds.,7,250,72,1014
923
+ 20180819,12:00,18:00,26,25,Scattered clouds.,15,260,65,1013
924
+ 20180819,18:00,00:00,23,22,Passing clouds.,7,280,76,1012
925
+ 20180820,00:00,06:00,22,22,Overcast.,10,180,81,1013
926
+ 20180820,06:00,12:00,24,22,Partly sunny.,11,180,75,1014
927
+ 20180820,12:00,18:00,25,23,Partly sunny.,14,210,68,1013
928
+ 20180820,18:00,00:00,22,22,Overcast.,8,240,76,1013
929
+ 20180821,00:00,06:00,22,22,Overcast.,7,210,78,1013
930
+ 20180821,06:00,12:00,24,22,Passing clouds.,12,210,71,1015
931
+ 20180821,12:00,18:00,25,24,Scattered clouds.,13,260,66,1014
932
+ 20180821,18:00,00:00,23,22,Passing clouds.,5,260,77,1015
933
+ 20180822,00:00,06:00,22,22,Passing clouds.,4,190,77,1015
934
+ 20180822,06:00,12:00,26,22,Passing clouds.,10,180,71,1016
935
+ 20180822,12:00,18:00,26,23,Scattered clouds.,18,270,68,1015
936
+ 20180822,18:00,00:00,23,22,Passing clouds.,6,260,77,1015
937
+ 20180823,00:00,06:00,22,22,Passing clouds.,2,310,76,1015
938
+ 20180823,06:00,12:00,24,22,Passing clouds.,11,270,71,1016
939
+ 20180823,12:00,18:00,25,23,Scattered clouds.,18,260,67,1015
940
+ 20180823,18:00,00:00,23,22,Passing clouds.,9,290,75,1014
941
+ 20180824,00:00,06:00,22,22,Overcast.,6,230,74,1014
942
+ 20180824,06:00,12:00,23,22,Overcast.,10,260,70,1015
943
+ 20180824,12:00,18:00,24,22,Partly sunny.,15,270,64,1013
944
+ 20180824,18:00,00:00,22,21,Passing clouds.,4,270,75,1012
945
+ 20180825,00:00,06:00,22,21,Overcast.,3,110,78,1012
946
+ 20180825,06:00,12:00,24,22,Overcast.,10,220,70,1014
947
+ 20180825,12:00,18:00,24,23,Passing clouds.,14,280,63,1013
948
+ 20180825,18:00,00:00,22,22,Overcast.,9,260,73,1014
949
+ 20180826,00:00,06:00,21,21,Overcast.,0,0,76,1015
950
+ 20180826,06:00,12:00,24,22,Overcast.,8,0,65,1015
951
+ 20180826,12:00,18:00,25,23,Sunny.,21,300,62,1014
952
+ 20180826,18:00,00:00,22,21,Passing clouds.,8,320,77,1014
953
+ 20180827,00:00,06:00,21,21,Passing clouds.,6,290,75,1014
954
+ 20180827,06:00,12:00,23,22,Partly sunny.,11,170,66,1014
955
+ 20180827,12:00,18:00,24,22,Scattered clouds.,17,290,65,1013
956
+ 20180827,18:00,00:00,22,21,Passing clouds.,10,310,76,1012
957
+ 20180828,00:00,06:00,21,19,Partly cloudy.,2,320,83,1012
958
+ 20180828,06:00,12:00,24,20,Broken clouds.,8,300,70,1014
959
+ 20180828,12:00,18:00,24,23,Broken clouds.,18,290,65,1013
960
+ 20180828,18:00,00:00,23,22,Partly cloudy.,15,330,78,1013
961
+ 20180829,00:00,06:00,22,18,Partly cloudy.,9,0,82,1013
962
+ 20180829,06:00,12:00,26,21,Partly sunny.,15,300,73,1014
963
+ 20180829,12:00,18:00,26,24,Partly sunny.,23,320,66,1013
964
+ 20180829,18:00,00:00,23,22,Passing clouds.,15,320,80,1014
965
+ 20180830,00:00,06:00,22,21,Passing clouds.,9,340,85,1014
966
+ 20180830,06:00,12:00,25,21,Scattered clouds.,15,310,75,1014
967
+ 20180830,12:00,18:00,26,24,Passing clouds.,21,310,64,1013
968
+ 20180830,18:00,00:00,23,22,Passing clouds.,11,310,80,1013
969
+ 20180831,00:00,06:00,21,18,Passing clouds.,1,200,88,1012
970
+ 20180831,06:00,12:00,23,18,Passing clouds.,11,190,78,1012
971
+ 20180831,12:00,18:00,24,23,Scattered clouds.,15,260,68,1010
972
+ 20180831,18:00,00:00,22,20,Passing clouds.,7,260,79,1009
973
+ 20180901,00:00,06:00,19,19,Overcast.,9,180,85,1009
974
+ 20180901,06:00,12:00,27,18,Overcast.,15,190,69,1010
975
+ 20180901,12:00,18:00,23,22,Passing clouds.,14,180,71,1009
976
+ 20180901,18:00,00:00,21,19,Passing clouds.,10,160,85,1009
977
+ 20180902,00:00,06:00,20,19,Overcast.,13,150,83,1010
978
+ 20180902,06:00,12:00,22,20,Overcast.,14,180,71,1012
979
+ 20180902,12:00,18:00,23,21,Scattered clouds.,13,200,69,1011
980
+ 20180902,18:00,00:00,21,21,Overcast.,7,220,76,1012
981
+ 20180903,00:00,06:00,21,21,Overcast.,5,210,76,1012
982
+ 20180903,06:00,12:00,23,21,Overcast.,12,260,69,1012
983
+ 20180903,12:00,18:00,23,22,Partly sunny.,15,270,67,1011
984
+ 20180903,18:00,00:00,21,21,Overcast.,8,310,73,1012
985
+ 20180904,00:00,06:00,22,21,Passing clouds.,7,320,75,1011
986
+ 20180904,06:00,12:00,22,21,Overcast.,11,280,79,1012
987
+ 20180904,12:00,18:00,23,21,Overcast.,12,280,73,1011
988
+ 20180904,18:00,00:00,22,21,Passing clouds.,12,300,76,1012
989
+ 20180905,00:00,06:00,22,22,Passing clouds.,3,340,74,1012
990
+ 20180905,06:00,12:00,24,22,Broken clouds.,9,190,70,1015
991
+ 20180905,12:00,18:00,26,23,Passing clouds.,24,290,62,1014
992
+ 20180905,18:00,00:00,22,21,Passing clouds.,16,340,76,1015
993
+ 20180906,00:00,06:00,22,21,Overcast.,13,310,78,1016
994
+ 20180906,06:00,12:00,22,21,Overcast.,13,310,76,1017
995
+ 20180906,12:00,18:00,23,21,Partly sunny.,23,300,70,1015
996
+ 20180906,18:00,00:00,21,20,Overcast.,16,310,79,1015
997
+ 20180907,00:00,06:00,21,20,Overcast.,11,300,82,1015
998
+ 20180907,06:00,12:00,23,20,Overcast.,12,320,80,1015
999
+ 20180907,12:00,18:00,23,21,Scattered clouds.,21,300,72,1013
1000
+ 20180907,18:00,00:00,21,20,Scattered clouds.,17,330,82,1013
1001
+ 20180908,00:00,06:00,,,Not Available,,,,
1002
+ 20180908,06:00,12:00,24,19,Fog.,10,0,85,1012
1003
+ 20180908,12:00,18:00,25,22,Passing clouds.,21,300,74,1010
1004
+ 20180908,18:00,00:00,21,20,Passing clouds.,13,320,86,1009
1005
+ 20180909,00:00,06:00,19,18,Dense fog.,3,320,94,1010
1006
+ 20180909,06:00,12:00,21,19,Fog.,8,350,88,1011
1007
+ 20180909,12:00,18:00,22,21,Partly sunny.,12,200,79,1010
1008
+ 20180909,18:00,00:00,20,19,Passing clouds.,4,210,85,1011
1009
+ 20180910,00:00,06:00,19,18,Passing clouds.,8,190,87,1011
1010
+ 20180910,06:00,12:00,22,19,Passing clouds.,9,210,79,1012
1011
+ 20180910,12:00,18:00,23,19,Scattered clouds.,13,200,72,1011
1012
+ 20180910,18:00,00:00,19,17,Passing clouds.,1,210,79,1011
1013
+ 20180911,00:00,06:00,18,18,Passing clouds.,7,140,84,1011
1014
+ 20180911,06:00,12:00,22,18,Partly sunny.,12,140,74,1012
1015
+ 20180911,12:00,18:00,22,21,Passing clouds.,11,250,69,1010
1016
+ 20180911,18:00,00:00,20,19,Passing clouds.,6,150,77,1011
1017
+ 20180912,00:00,06:00,20,19,Overcast.,6,180,75,1011
1018
+ 20180912,06:00,12:00,23,20,Passing clouds.,9,210,68,1012
1019
+ 20180912,12:00,18:00,23,22,Sunny.,14,280,67,1011
1020
+ 20180912,18:00,00:00,21,21,Clear.,9,340,76,1011
1021
+ 20180913,00:00,06:00,20,18,Passing clouds.,1,320,85,1011
1022
+ 20180913,06:00,12:00,24,20,Partly sunny.,13,340,75,1013
1023
+ 20180913,12:00,18:00,25,23,Sunny.,21,320,67,1011
1024
+ 20180913,18:00,00:00,22,21,Passing clouds.,13,340,84,1011
1025
+ 20180914,00:00,06:00,21,19,Passing clouds.,2,20,89,1010
1026
+ 20180914,06:00,12:00,24,19,Passing clouds.,8,350,84,1010
1027
+ 20180914,12:00,18:00,26,23,Sunny.,18,320,64,1008
1028
+ 20180914,18:00,00:00,22,21,Passing clouds.,11,310,82,1009
1029
+ 20180915,00:00,06:00,21,19,Clear.,4,290,88,1009
1030
+ 20180915,06:00,12:00,22,22,Scattered clouds.,9,0,76,1011
1031
+ 20180915,12:00,18:00,25,24,Sunny.,19,310,65,1010
1032
+ 20180915,18:00,00:00,22,21,Clear.,13,310,80,1010
1033
+ 20180916,00:00,06:00,20,18,Clear.,3,310,92,1010
1034
+ 20180916,06:00,12:00,24,18,Passing clouds.,2,310,88,1012
1035
+ 20180916,12:00,18:00,25,24,Sunny.,19,290,65,1012
1036
+ 20180916,18:00,00:00,22,21,Clear.,11,310,77,1012
1037
+ 20180917,00:00,06:00,19,19,Passing clouds.,9,0,90,1011
1038
+ 20180917,06:00,12:00,21,19,Passing clouds.,8,350,87,1012
1039
+ 20180917,12:00,18:00,25,23,Sunny.,18,310,65,1011
1040
+ 20180917,18:00,00:00,22,20,Passing clouds.,12,320,81,1011
1041
+ 20180918,00:00,06:00,20,18,Passing clouds.,6,10,88,1011
1042
+ 20180918,06:00,12:00,24,17,Passing clouds.,7,300,79,1012
1043
+ 20180918,12:00,18:00,24,22,Passing clouds.,18,320,66,1010
1044
+ 20180918,18:00,00:00,21,19,Passing clouds.,11,320,79,1010
1045
+ 20180919,00:00,06:00,19,18,Passing clouds.,4,260,80,1009
1046
+ 20180919,06:00,12:00,22,20,Passing clouds.,9,300,67,1009
1047
+ 20180919,12:00,18:00,23,21,Passing clouds.,18,310,65,1007
1048
+ 20180919,18:00,00:00,20,17,Passing clouds.,6,320,84,1007
1049
+ 20180920,00:00,06:00,18,16,Passing clouds.,4,140,87,1008
1050
+ 20180920,06:00,12:00,19,18,Overcast.,10,200,82,1011
1051
+ 20180920,12:00,18:00,21,20,Passing clouds.,13,200,69,1011
1052
+ 20180920,18:00,00:00,19,17,Passing clouds.,2,190,84,1013
1053
+ 20180921,00:00,06:00,18,16,Passing clouds.,4,0,88,1013
1054
+ 20180921,06:00,12:00,21,17,Partly sunny.,8,310,82,1015
1055
+ 20180921,12:00,18:00,22,21,Passing clouds.,17,270,68,1014
1056
+ 20180921,18:00,00:00,20,20,Passing clouds.,12,310,80,1014
1057
+ 20180922,00:00,06:00,19,19,Low clouds.,15,30,85,1014
1058
+ 20180922,06:00,12:00,23,19,Low clouds.,16,320,79,1014
1059
+ 20180922,12:00,18:00,24,22,Scattered clouds.,23,310,72,1012
1060
+ 20180922,18:00,00:00,21,21,Passing clouds.,12,310,80,1012
1061
+ 20180923,00:00,06:00,20,19,Fog.,2,350,88,1011
1062
+ 20180923,06:00,12:00,22,19,Partly sunny.,8,260,80,1013
1063
+ 20180923,12:00,18:00,22,20,Partly sunny.,16,280,70,1011
1064
+ 20180923,18:00,00:00,19,19,Passing clouds.,10,270,79,1011
1065
+ 20180924,00:00,06:00,19,19,Overcast.,9,240,81,1011
1066
+ 20180924,06:00,12:00,19,18,Overcast.,12,240,78,1013
1067
+ 20180924,12:00,18:00,19,19,Overcast.,11,210,72,1012
1068
+ 20180924,18:00,00:00,19,18,Overcast.,8,300,76,1012
1069
+ 20180925,00:00,06:00,19,18,Overcast.,7,310,80,1012
1070
+ 20180925,06:00,12:00,21,19,Overcast.,9,190,76,1014
1071
+ 20180925,12:00,18:00,23,20,Passing clouds.,19,290,65,1013
1072
+ 20180925,18:00,00:00,19,19,Passing clouds.,12,320,77,1013
1073
+ 20180926,00:00,06:00,19,19,Overcast.,11,350,80,1013
1074
+ 20180926,06:00,12:00,21,19,Overcast.,12,10,79,1015
1075
+ 20180926,12:00,18:00,21,20,Partly sunny.,15,270,76,1014
1076
+ 20180926,18:00,00:00,19,19,Passing clouds.,9,310,82,1014
1077
+ 20180927,00:00,06:00,19,18,Passing clouds.,13,330,87,1013
1078
+ 20180927,06:00,12:00,21,18,Fog.,9,20,87,1013
1079
+ 20180927,12:00,18:00,22,21,Scattered clouds.,15,310,75,1011
1080
+ 20180927,18:00,00:00,19,18,Low clouds.,7,290,87,1011
1081
+ 20180928,00:00,06:00,18,18,Fog.,5,230,92,1012
1082
+ 20180928,06:00,12:00,20,18,Overcast.,10,200,85,1012
1083
+ 20180928,12:00,18:00,21,20,Scattered clouds.,11,210,74,1011
1084
+ 20180928,18:00,00:00,19,18,Fog.,5,260,82,1012
1085
+ 20180929,00:00,06:00,19,18,Overcast.,7,260,81,1013
1086
+ 20180929,06:00,12:00,22,18,Passing clouds.,8,220,72,1013
1087
+ 20180929,12:00,18:00,23,21,Passing clouds.,17,290,64,1012
1088
+ 20180929,18:00,00:00,21,19,Clear.,14,310,76,1011
1089
+ 20180930,00:00,06:00,,,Not Available,,,,
1090
+ 20180930,06:00,12:00,23,18,Partly sunny.,10,350,75,1011
1091
+ 20180930,12:00,18:00,24,23,Broken clouds.,15,310,69,1010
1092
+ 20180930,18:00,00:00,22,20,Passing clouds.,8,180,82,1011
1093
+ 20181001,00:00,06:00,21,21,Clear.,19,340,81,1010
1094
+ 20181001,06:00,12:00,30,21,Broken clouds.,7,0,64,1010
1095
+ 20181001,12:00,18:00,26,25,Broken clouds.,22,330,51,1008
1096
+ 20181001,18:00,00:00,25,23,Passing clouds.,17,330,54,1008
1097
+ 20181002,00:00,06:00,22,21,Passing clouds.,11,320,74,1008
1098
+ 20181002,06:00,12:00,23,21,Broken clouds.,9,70,78,1011
1099
+ 20181002,12:00,18:00,23,21,Partly sunny.,12,210,75,1012
1100
+ 20181002,18:00,00:00,20,18,Passing clouds.,7,190,89,1013
1101
+ 20181003,00:00,06:00,19,18,Passing clouds.,5,130,92,1013
1102
+ 20181003,06:00,12:00,22,19,Broken clouds.,9,190,86,1014
1103
+ 20181003,12:00,18:00,23,21,Partly sunny.,12,220,79,1013
1104
+ 20181003,18:00,00:00,20,19,Passing clouds.,5,190,89,1013
1105
+ 20181004,00:00,06:00,21,19,Partly cloudy.,8,270,87,1014
1106
+ 20181004,06:00,12:00,22,19,Partly sunny.,10,220,84,1016
1107
+ 20181004,12:00,18:00,23,21,Scattered clouds.,15,240,71,1014
1108
+ 20181004,18:00,00:00,21,20,Partly cloudy.,12,320,81,1014
1109
+ 20181005,00:00,06:00,19,18,Light rain. Mostly cloudy.,9,320,89,1015
1110
+ 20181005,06:00,12:00,22,19,Partly sunny.,11,300,74,1015
1111
+ 20181005,12:00,18:00,23,21,Scattered clouds.,19,280,66,1013
1112
+ 20181005,18:00,00:00,20,19,Passing clouds.,11,310,79,1012
1113
+ 20181006,00:00,06:00,19,18,Fog.,1,170,90,1011
1114
+ 20181006,06:00,12:00,20,19,Overcast.,14,210,77,1011
1115
+ 20181006,12:00,18:00,21,20,Partly sunny.,19,180,74,1009
1116
+ 20181006,18:00,00:00,19,18,Passing clouds.,16,170,84,1008
1117
+ 20181007,00:00,06:00,19,18,Mostly cloudy.,13,200,84,1008
1118
+ 20181007,06:00,12:00,21,18,More clouds than sun.,13,130,80,1009
1119
+ 20181007,12:00,18:00,22,20,Passing clouds.,15,240,70,1008
1120
+ 20181007,18:00,00:00,19,18,Passing clouds.,7,220,82,1009
1121
+ 20181008,00:00,06:00,17,17,Passing clouds.,4,100,83,1010
1122
+ 20181008,06:00,12:00,20,16,Passing clouds.,6,90,80,1010
1123
+ 20181008,12:00,18:00,,,Not Available,,,,
1124
+ 20181008,18:00,00:00,19,17,Clear.,3,240,77,1010
1125
+ 20181009,00:00,06:00,18,17,Passing clouds.,6,200,78,1011
1126
+ 20181009,06:00,12:00,21,18,Partly sunny.,9,0,69,1011
1127
+ 20181009,12:00,18:00,21,19,Scattered clouds.,12,270,64,1010
1128
+ 20181009,18:00,00:00,18,17,Passing clouds.,2,290,75,1010
1129
+ 20181010,00:00,06:00,18,16,Passing clouds.,5,20,72,1010
1130
+ 20181010,06:00,12:00,21,16,Scattered clouds.,8,80,67,1011
1131
+ 20181010,12:00,18:00,21,20,Passing clouds.,12,240,59,1010
1132
+ 20181010,18:00,00:00,19,19,Passing clouds.,7,310,61,1010
1133
+ 20181011,00:00,06:00,19,19,Passing clouds.,3,350,63,1010
1134
+ 20181011,06:00,12:00,21,19,Partly sunny.,6,210,62,1011
1135
+ 20181011,12:00,18:00,22,21,Scattered clouds.,20,280,57,1009
1136
+ 20181011,18:00,00:00,20,19,Passing clouds.,14,0,65,1009
1137
+ 20181012,00:00,06:00,18,17,Passing clouds.,9,0,74,1008
1138
+ 20181012,06:00,12:00,22,16,Partly sunny.,11,330,66,1009
1139
+ 20181012,12:00,18:00,22,20,Partly sunny.,22,310,66,1008
1140
+ 20181012,18:00,00:00,20,17,Light rain. Passing clouds.,4,290,78,1010
1141
+ 20181013,00:00,06:00,17,17,Mostly cloudy.,5,40,84,1011
1142
+ 20181013,06:00,12:00,19,17,Partly sunny.,7,140,81,1012
1143
+ 20181013,12:00,18:00,21,19,Broken clouds.,16,320,68,1011
1144
+ 20181013,18:00,00:00,19,17,Passing clouds.,8,340,77,1012
1145
+ 20181014,00:00,06:00,17,16,Mostly cloudy.,2,20,85,1012
1146
+ 20181014,06:00,12:00,22,17,Scattered clouds.,8,320,72,1014
1147
+ 20181014,12:00,18:00,22,20,Passing clouds.,22,300,64,1013
1148
+ 20181014,18:00,00:00,19,18,Passing clouds.,10,330,77,1014
1149
+ 20181015,00:00,06:00,18,17,Passing clouds.,5,330,86,1015
1150
+ 20181015,06:00,12:00,23,16,Passing clouds.,4,240,63,1016
1151
+ 20181015,12:00,18:00,26,24,Passing clouds.,20,280,28,1014
1152
+ 20181015,18:00,00:00,24,17,Clear.,6,90,20,1015
1153
+ 20181016,00:00,06:00,17,13,Clear.,8,20,28,1016
1154
+ 20181016,06:00,12:00,24,14,Sunny.,6,170,31,1017
1155
+ 20181016,12:00,18:00,24,22,Sunny.,15,300,36,1015
1156
+ 20181016,18:00,00:00,20,17,Clear.,2,260,71,1017
1157
+ 20181017,00:00,06:00,16,14,Clear.,1,330,60,1017
1158
+ 20181017,06:00,12:00,24,12,Sunny.,8,110,33,1018
1159
+ 20181017,12:00,18:00,24,22,Sunny.,21,290,36,1015
1160
+ 20181017,18:00,00:00,22,19,Clear.,5,0,54,1017
1161
+ 20181018,00:00,06:00,16,13,Clear.,0,0,67,1016
1162
+ 20181018,06:00,12:00,24,14,Sunny.,1,330,48,1017
1163
+ 20181018,12:00,18:00,27,22,Sunny.,20,320,45,1015
1164
+ 20181018,18:00,00:00,22,18,Clear.,11,10,58,1016
1165
+ 20181019,00:00,06:00,17,14,Clear.,1,350,66,1015
1166
+ 20181019,06:00,12:00,28,14,Sunny.,4,0,45,1016
1167
+ 20181019,12:00,18:00,30,24,Sunny.,19,340,33,1013
1168
+ 20181019,18:00,00:00,23,19,Clear.,7,0,42,1014
1169
+ 20181020,00:00,06:00,,,Not Available,,,,
1170
+ 20181020,06:00,12:00,28,15,Sunny.,2,210,34,1014
1171
+ 20181020,12:00,18:00,28,20,Passing clouds.,13,280,40,1012
1172
+ 20181020,18:00,00:00,19,17,Passing clouds.,1,180,84,1013
1173
+ 20181021,00:00,06:00,16,14,Clear.,0,0,84,1012
1174
+ 20181021,06:00,12:00,19,16,Fog.,3,140,93,1013
1175
+ 20181021,12:00,18:00,22,19,Scattered clouds.,12,280,75,1012
1176
+ 20181021,18:00,00:00,19,16,Passing clouds.,6,310,85,1012
1177
+ 20181022,00:00,06:00,18,16,Overcast.,2,340,81,1012
1178
+ 20181022,06:00,12:00,21,18,Scattered clouds.,6,280,71,1013
1179
+ 20181022,12:00,18:00,21,18,Partly sunny.,15,290,71,1011
1180
+ 20181022,18:00,00:00,18,17,Passing clouds.,6,310,79,1012
1181
+ 20181023,00:00,06:00,18,17,Passing clouds.,1,20,84,1012
1182
+ 20181023,06:00,12:00,21,18,Broken clouds.,10,20,75,1013
1183
+ 20181023,12:00,18:00,21,19,Partly sunny.,17,300,72,1011
1184
+ 20181023,18:00,00:00,19,19,Overcast.,7,310,80,1012
1185
+ 20181024,00:00,06:00,19,18,Overcast.,2,240,82,1012
1186
+ 20181024,06:00,12:00,19,18,Overcast.,7,180,81,1014
1187
+ 20181024,12:00,18:00,21,19,Passing clouds.,12,250,74,1013
1188
+ 20181024,18:00,00:00,19,17,Passing clouds.,5,280,87,1015
1189
+ 20181025,00:00,06:00,18,17,Fog.,3,190,89,1016
1190
+ 20181025,06:00,12:00,20,17,Drizzle. Fog.,7,0,82,1017
1191
+ 20181025,12:00,18:00,22,19,Passing clouds.,13,290,72,1015
1192
+ 20181025,18:00,00:00,19,17,Passing clouds.,10,330,89,1015
1193
+ 20181026,00:00,06:00,17,16,Fog.,9,340,96,1016
1194
+ 20181026,06:00,12:00,23,16,Passing clouds.,5,330,86,1017
1195
+ 20181026,12:00,18:00,23,19,Haze.,20,310,71,1015
1196
+ 20181026,18:00,00:00,19,18,Fog.,6,320,85,1015
1197
+ 20181027,00:00,06:00,19,19,Dense fog.,6,0,83,1015
1198
+ 20181027,06:00,12:00,26,18,Fog.,6,350,73,1016
1199
+ 20181027,12:00,18:00,24,19,Passing clouds.,14,300,71,1014
1200
+ 20181027,18:00,00:00,19,17,Passing clouds.,0,0,86,1015
1201
+ 20181028,00:00,06:00,18,16,Fog.,10,350,90,1015
1202
+ 20181028,06:00,12:00,21,16,Fog.,8,0,85,1016
1203
+ 20181028,12:00,18:00,22,19,Partly sunny.,14,320,71,1015
1204
+ 20181028,18:00,00:00,17,17,Clear.,6,260,90,1016
1205
+ 20181029,00:00,06:00,18,17,Low clouds.,3,320,88,1015
1206
+ 20181029,06:00,12:00,19,17,Partly sunny.,9,150,82,1016
1207
+ 20181029,12:00,18:00,21,19,Partly sunny.,10,180,76,1014
1208
+ 20181029,18:00,00:00,19,18,Overcast.,9,170,81,1014
1209
+ 20181030,00:00,06:00,18,18,Passing clouds.,11,170,80,1013
1210
+ 20181030,06:00,12:00,20,18,Partly sunny.,11,140,71,1013
1211
+ 20181030,12:00,18:00,22,19,Passing clouds.,13,200,63,1012
1212
+ 20181030,18:00,00:00,19,18,Clear.,6,320,77,1013
1213
+ 20181031,00:00,06:00,16,15,Clear.,4,90,88,1015
1214
+ 20181031,06:00,12:00,22,16,Passing clouds.,9,330,73,1017
1215
+ 20181031,12:00,18:00,23,20,Scattered clouds.,21,330,62,1015
1216
+ 20181031,18:00,00:00,20,17,Passing clouds.,7,0,74,1017
1217
+ 20181101,00:00,06:00,16,13,Passing clouds.,4,100,71,1017
1218
+ 20181101,06:00,12:00,26,14,Scattered clouds.,4,100,44,1018
1219
+ 20181101,12:00,18:00,26,22,Partly sunny.,15,300,39,1016
1220
+ 20181101,18:00,00:00,21,17,Passing clouds.,8,10,62,1018
1221
+ 20181102,00:00,06:00,17,13,Passing clouds.,3,310,73,1018
1222
+ 20181102,06:00,12:00,28,16,Passing clouds.,3,0,38,1018
1223
+ 20181102,12:00,18:00,28,23,Sunny.,17,330,33,1015
1224
+ 20181102,18:00,00:00,22,19,Passing clouds.,9,0,52,1015
1225
+ 20181103,00:00,06:00,18,16,Clear.,0,0,66,1014
1226
+ 20181103,06:00,12:00,22,14,Scattered clouds.,3,210,58,1015
1227
+ 20181103,12:00,18:00,24,22,Passing clouds.,12,310,59,1013
1228
+ 20181103,18:00,00:00,19,17,Passing clouds.,3,140,86,1014
1229
+ 20181104,00:00,06:00,17,16,Dense fog.,3,130,96,1014
1230
+ 20181104,06:00,12:00,21,15,Fog.,6,190,89,1015
1231
+ 20181104,12:00,18:00,20,18,Partly sunny.,10,170,82,1013
1232
+ 20181104,18:00,00:00,18,17,Fog.,4,190,92,1013
1233
+ 20181105,00:00,06:00,18,16,Low clouds.,8,120,87,1012
1234
+ 20181105,06:00,12:00,19,14,Fog.,8,150,84,1012
1235
+ 20181105,12:00,18:00,20,18,Partly sunny.,16,190,77,1011
1236
+ 20181105,18:00,00:00,18,17,Passing clouds.,10,170,84,1012
1237
+ 20181106,00:00,06:00,18,18,Passing clouds.,11,90,77,1013
1238
+ 20181106,06:00,12:00,21,18,Passing clouds.,11,140,67,1014
1239
+ 20181106,12:00,18:00,21,19,Scattered clouds.,12,200,71,1013
1240
+ 20181106,18:00,00:00,19,19,Overcast.,4,240,70,1014
1241
+ 20181107,00:00,06:00,19,19,Passing clouds.,6,340,69,1014
1242
+ 20181107,06:00,12:00,21,19,Partly sunny.,11,0,63,1016
1243
+ 20181107,12:00,18:00,21,19,Scattered clouds.,20,300,66,1014
1244
+ 20181107,18:00,00:00,19,19,Passing clouds.,8,0,72,1014
1245
+ 20181108,00:00,06:00,19,19,Overcast.,2,270,70,1014
1246
+ 20181108,06:00,12:00,22,19,Partly sunny.,11,90,61,1014
1247
+ 20181108,12:00,18:00,22,19,Sunny.,18,320,65,1013
1248
+ 20181108,18:00,00:00,19,16,Clear.,3,340,83,1015
1249
+ 20181109,00:00,06:00,15,13,Clear.,2,320,88,1015
1250
+ 20181109,06:00,12:00,27,17,Sunny.,9,330,29,1016
1251
+ 20181109,12:00,18:00,27,22,Passing clouds.,19,320,19,1014
1252
+ 20181109,18:00,00:00,19,18,Clear.,6,200,43,1015
1253
+ 20181110,00:00,06:00,,,Not Available,,,,
1254
+ 20181110,06:00,12:00,23,15,Sunny.,6,160,29,1015
1255
+ 20181110,12:00,18:00,23,18,Sunny.,9,260,38,1013
1256
+ 20181110,18:00,00:00,17,14,Passing clouds.,2,130,68,1014
1257
+ 20181111,00:00,06:00,13,12,Passing clouds.,0,0,64,1015
1258
+ 20181111,06:00,12:00,21,12,Sunny.,3,80,31,1017
1259
+ 20181111,12:00,18:00,23,18,Passing clouds.,10,320,40,1016
1260
+ 20181111,18:00,00:00,17,14,Passing clouds.,1,330,68,1019
1261
+ 20181112,00:00,06:00,12,12,Clear.,3,340,49,1021
1262
+ 20181112,06:00,12:00,23,23,Sunny.,15,330,9,1023
1263
+ 20181112,12:00,18:00,,,Not Available,,,,
1264
+ 20181112,18:00,00:00,,,Not Available,,,,
1265
+ 20181113,00:00,06:00,14,11,Clear.,4,40,48,1025
1266
+ 20181113,06:00,12:00,23,14,Partly sunny.,8,60,19,1026
1267
+ 20181113,12:00,18:00,22,19,Partly sunny.,15,280,26,1024
1268
+ 20181113,18:00,00:00,17,14,Passing clouds.,6,210,58,1024
1269
+ 20181114,00:00,06:00,14,13,Passing clouds.,5,350,44,1023
1270
+ 20181114,06:00,12:00,24,16,Partly sunny.,11,0,21,1023
1271
+ 20181114,12:00,18:00,24,20,Passing clouds.,18,290,27,1020
1272
+ 20181114,18:00,00:00,18,16,Clear.,5,20,36,1020
1273
+ 20181115,00:00,06:00,12,11,Passing clouds.,2,120,43,1018
1274
+ 20181115,06:00,12:00,25,12,Scattered clouds.,4,0,30,1018
1275
+ 20181115,12:00,18:00,23,18,Partly sunny.,11,310,28,1016
1276
+ 20181115,18:00,00:00,18,15,Passing clouds.,6,110,72,1017
1277
+ 20181116,00:00,06:00,14,12,Passing clouds.,1,60,69,1016
1278
+ 20181116,06:00,12:00,21,12,Scattered clouds.,5,100,50,1016
1279
+ 20181116,12:00,18:00,20,17,Passing clouds.,11,190,77,1015
1280
+ 20181116,18:00,00:00,16,15,Clear.,4,180,85,1016
1281
+ 20181117,00:00,06:00,13,11,Passing clouds.,1,100,92,1016
1282
+ 20181117,06:00,12:00,21,12,Scattered clouds.,5,120,38,1017
1283
+ 20181117,12:00,18:00,22,17,Partly sunny.,7,270,53,1016
1284
+ 20181117,18:00,00:00,17,15,Partly cloudy.,1,90,83,1017
1285
+ 20181118,00:00,06:00,12,12,Clear.,0,0,86,1017
1286
+ 20181118,06:00,12:00,21,14,Passing clouds.,5,340,50,1018
1287
+ 20181118,12:00,18:00,21,18,Scattered clouds.,17,310,58,1015
1288
+ 20181118,18:00,00:00,16,14,Passing clouds.,0,0,84,1017
1289
+ 20181119,00:00,06:00,14,12,Passing clouds.,1,120,87,1017
1290
+ 20181119,06:00,12:00,21,12,Partly sunny.,9,290,56,1017
1291
+ 20181119,12:00,18:00,20,17,Broken clouds.,7,260,72,1016
1292
+ 20181119,18:00,00:00,17,14,Fog.,3,100,83,1016
1293
+ 20181120,00:00,06:00,15,12,Passing clouds.,2,60,74,1015
1294
+ 20181120,06:00,12:00,20,12,Passing clouds.,5,170,63,1017
1295
+ 20181120,12:00,18:00,20,17,Passing clouds.,7,250,68,1016
1296
+ 20181120,18:00,00:00,17,14,Passing clouds.,0,0,80,1018
1297
+ 20181121,00:00,06:00,14,12,Passing clouds.,1,120,75,1019
1298
+ 20181121,06:00,12:00,21,13,Partly sunny.,4,70,59,1020
1299
+ 20181121,12:00,18:00,21,18,Partly sunny.,8,220,60,1019
1300
+ 20181121,18:00,00:00,18,17,Passing clouds.,3,110,74,1020
1301
+ 20181122,00:00,06:00,18,17,Mostly cloudy.,12,130,80,1019
1302
+ 20181122,06:00,12:00,19,17,Broken clouds.,12,320,80,1022
1303
+ 20181122,12:00,18:00,,,Not Available,,,,
1304
+ 20181122,18:00,00:00,17,16,Passing clouds.,7,330,78,1023
1305
+ 20181123,00:00,06:00,14,13,Partly cloudy.,3,100,80,1022
1306
+ 20181123,06:00,12:00,20,14,Partly sunny.,5,300,66,1022
1307
+ 20181123,12:00,18:00,21,18,Scattered clouds.,20,310,63,1018
1308
+ 20181123,18:00,00:00,17,17,Passing clouds.,7,90,74,1017
1309
+ 20181124,00:00,06:00,17,17,Mostly cloudy.,3,130,72,1015
1310
+ 20181124,06:00,12:00,21,17,Overcast.,10,140,70,1015
1311
+ 20181124,12:00,18:00,21,18,Passing clouds.,13,280,69,1012
1312
+ 20181124,18:00,00:00,18,16,Passing clouds.,4,100,81,1013
1313
+ 20181125,00:00,06:00,14,13,Clear.,5,60,88,1014
1314
+ 20181125,06:00,12:00,22,14,Scattered clouds.,5,320,66,1015
1315
+ 20181125,12:00,18:00,22,19,Scattered clouds.,19,320,69,1015
1316
+ 20181125,18:00,00:00,18,16,Fog.,3,340,87,1017
1317
+ 20181126,00:00,06:00,13,13,Fog.,0,0,86,1018
1318
+ 20181126,06:00,12:00,24,14,Sunny.,6,330,47,1019
1319
+ 20181126,12:00,18:00,23,19,Scattered clouds.,20,340,48,1017
1320
+ 20181126,18:00,00:00,19,16,Passing clouds.,2,10,68,1018
1321
+ 20181127,00:00,06:00,14,12,Clear.,2,10,64,1018
1322
+ 20181127,06:00,12:00,23,12,Scattered clouds.,4,340,34,1018
1323
+ 20181127,12:00,18:00,23,19,Partly sunny.,7,270,49,1016
1324
+ 20181127,18:00,00:00,18,16,Passing clouds.,2,290,76,1016
1325
+ 20181128,00:00,06:00,16,13,Passing clouds.,1,120,76,1015
1326
+ 20181128,06:00,12:00,19,14,Partly sunny.,4,170,63,1015
1327
+ 20181128,12:00,18:00,19,18,Broken clouds.,11,210,57,1013
1328
+ 20181128,18:00,00:00,18,16,Light rain. Fog.,16,150,79,1013
1329
+ 20181129,00:00,06:00,18,15,Light rain. Fog.,21,130,85,1012
1330
+ 20181129,06:00,12:00,18,16,Broken clouds.,26,220,79,1012
1331
+ 20181129,12:00,18:00,18,17,Partly sunny.,19,260,73,1010
1332
+ 20181129,18:00,00:00,18,16,Partly cloudy.,24,260,68,1011
1333
+ 20181130,00:00,06:00,17,16,Passing clouds.,28,280,71,1011
1334
+ 20181130,06:00,12:00,18,17,Broken clouds.,24,270,66,1015
1335
+ 20181130,12:00,18:00,18,17,Broken clouds.,19,280,61,1015
1336
+ 20181130,18:00,00:00,17,16,Partly cloudy.,12,260,68,1016
1337
+ 20181201,00:00,06:00,16,14,Passing clouds.,6,200,74,1015
1338
+ 20181201,06:00,12:00,18,14,Scattered clouds.,11,120,70,1016
1339
+ 20181201,12:00,18:00,19,16,Broken clouds.,14,280,60,1014
1340
+ 20181201,18:00,00:00,17,16,Partly cloudy.,22,290,60,1014
1341
+ 20181202,00:00,06:00,16,16,Partly cloudy.,28,300,60,1014
1342
+ 20181202,06:00,12:00,18,15,Partly sunny.,19,310,46,1017
1343
+ 20181202,12:00,18:00,17,15,Partly sunny.,12,290,46,1017
1344
+ 20181202,18:00,00:00,14,12,Passing clouds.,5,80,64,1019
1345
+ 20181203,00:00,06:00,9,8,Passing clouds.,9,90,67,1020
1346
+ 20181203,06:00,12:00,19,9,Passing clouds.,5,290,46,1020
1347
+ 20181203,12:00,18:00,19,16,Passing clouds.,16,320,49,1018
1348
+ 20181203,18:00,00:00,16,12,Clear.,2,0,68,1019
1349
+ 20181204,00:00,06:00,13,10,Passing clouds.,2,20,60,1018
1350
+ 20181204,06:00,12:00,20,11,Partly sunny.,5,350,41,1018
1351
+ 20181204,12:00,18:00,21,16,Partly sunny.,10,260,53,1014
1352
+ 20181204,18:00,00:00,15,12,Clear.,5,90,81,1015
1353
+ 20181205,00:00,06:00,12,9,Passing clouds.,2,110,72,1014
1354
+ 20181205,06:00,12:00,18,9,Partly sunny.,6,90,50,1014
1355
+ 20181205,12:00,18:00,15,14,Rain. Cloudy.,16,110,85,1012
1356
+ 20181205,18:00,00:00,16,15,Passing clouds.,16,140,71,1011
1357
+ 20181206,00:00,06:00,16,14,Passing clouds.,10,140,77,1011
1358
+ 20181206,06:00,12:00,18,15,Mostly cloudy.,21,130,78,1012
1359
+ 20181206,12:00,18:00,18,15,Broken clouds.,32,180,83,1010
1360
+ 20181206,18:00,00:00,14,14,Rain. Fog.,12,70,86,1013
1361
+ 20181207,00:00,06:00,14,14,Passing clouds.,7,70,82,1014
1362
+ 20181207,06:00,12:00,20,14,Passing clouds.,5,30,67,1017
1363
+ 20181207,12:00,18:00,20,17,Passing clouds.,17,300,66,1018
1364
+ 20181207,18:00,00:00,17,13,Passing clouds.,4,30,82,1021
1365
+ 20181208,00:00,06:00,13,11,Clear.,1,80,85,1023
1366
+ 20181208,06:00,12:00,19,11,Passing clouds.,2,100,66,1024
1367
+ 20181208,12:00,18:00,20,17,Passing clouds.,15,340,59,1023
1368
+ 20181208,18:00,00:00,16,14,Passing clouds.,5,330,82,1025
1369
+ 20181209,00:00,06:00,13,11,Clear.,1,50,85,1024
1370
+ 20181209,06:00,12:00,21,11,Passing clouds.,7,0,64,1024
1371
+ 20181209,12:00,18:00,21,17,Partly sunny.,15,340,63,1021
1372
+ 20181209,18:00,00:00,17,15,Passing clouds.,7,0,81,1021
1373
+ 20181210,00:00,06:00,14,13,Passing clouds.,2,60,84,1019
1374
+ 20181210,06:00,12:00,19,13,Partly sunny.,8,0,70,1019
1375
+ 20181210,12:00,18:00,20,17,Partly sunny.,10,320,68,1016
1376
+ 20181210,18:00,00:00,16,14,Fog.,2,330,86,1017
1377
+ 20181211,00:00,06:00,14,13,Fog.,2,120,84,1016
1378
+ 20181211,06:00,12:00,18,13,Broken clouds.,7,90,74,1017
1379
+ 20181211,12:00,18:00,18,17,Scattered clouds.,9,210,67,1016
1380
+ 20181211,18:00,00:00,16,13,Passing clouds.,2,320,79,1018
1381
+ 20181212,00:00,06:00,14,12,Passing clouds.,6,100,82,1019
1382
+ 20181212,06:00,12:00,18,12,Partly sunny.,8,120,72,1020
1383
+ 20181212,12:00,18:00,18,17,Partly sunny.,12,180,73,1019
1384
+ 20181212,18:00,00:00,16,13,Passing clouds.,6,320,85,1021
1385
+ 20181213,00:00,06:00,13,11,Passing clouds.,4,340,85,1022
1386
+ 20181213,06:00,12:00,26,11,Passing clouds.,1,0,56,1023
1387
+ 20181213,12:00,18:00,21,17,Passing clouds.,9,210,71,1021
1388
+ 20181213,18:00,00:00,17,14,Fog.,5,80,88,1022
1389
+ 20181214,00:00,06:00,14,13,Passing clouds.,6,330,80,1021
1390
+ 20181214,06:00,12:00,20,14,Partly sunny.,5,310,42,1021
1391
+ 20181214,12:00,18:00,22,17,More clouds than sun.,10,320,51,1019
1392
+ 20181214,18:00,00:00,16,15,Passing clouds.,4,330,64,1020
1393
+ 20181215,00:00,06:00,16,13,Clear.,8,0,69,1018
1394
+ 20181215,06:00,12:00,21,12,Passing clouds.,7,320,55,1018
1395
+ 20181215,12:00,18:00,21,17,Passing clouds.,19,340,60,1017
1396
+ 20181215,18:00,00:00,16,13,Clear.,1,320,81,1020
1397
+ 20181216,00:00,06:00,12,11,Clear.,4,330,78,1019
1398
+ 20181216,06:00,12:00,19,13,Scattered clouds.,9,340,64,1021
1399
+ 20181216,12:00,18:00,19,17,Passing clouds.,14,300,68,1020
1400
+ 20181216,18:00,00:00,16,14,Passing clouds.,7,310,82,1021
1401
+ 20181217,00:00,06:00,15,14,Passing clouds.,4,70,85,1021
1402
+ 20181217,06:00,12:00,19,14,Partly sunny.,5,110,71,1023
1403
+ 20181217,12:00,18:00,19,17,Broken clouds.,11,280,67,1021
1404
+ 20181217,18:00,00:00,18,16,Partly cloudy.,6,300,77,1022
1405
+ 20181218,00:00,06:00,16,14,Passing clouds.,2,270,84,1022
1406
+ 20181218,06:00,12:00,19,13,Broken clouds.,5,80,77,1023
1407
+ 20181218,12:00,18:00,19,17,Passing clouds.,22,340,69,1021
1408
+ 20181218,18:00,00:00,17,14,Passing clouds.,6,0,80,1021
1409
+ 20181219,00:00,06:00,16,12,Passing clouds.,3,90,85,1021
1410
+ 20181219,06:00,12:00,21,12,Passing clouds.,6,90,63,1021
1411
+ 20181219,12:00,18:00,21,18,Passing clouds.,11,300,65,1020
1412
+ 20181219,18:00,00:00,17,14,Fog.,4,0,83,1020
1413
+ 20181220,00:00,06:00,14,11,Passing clouds.,4,350,85,1019
1414
+ 20181220,06:00,12:00,21,11,Partly sunny.,4,310,67,1019
1415
+ 20181220,12:00,18:00,22,17,Partly sunny.,13,320,67,1017
1416
+ 20181220,18:00,00:00,17,13,Fog.,9,330,84,1018
1417
+ 20181221,00:00,06:00,14,13,Fog.,5,10,89,1016
1418
+ 20181221,06:00,12:00,18,13,Fog.,3,130,82,1016
1419
+ 20181221,12:00,18:00,19,17,Cloudy.,5,260,74,1014
1420
+ 20181221,18:00,00:00,16,13,Fog.,3,320,87,1015
1421
+ 20181222,00:00,06:00,14,12,Fog.,4,70,83,1016
1422
+ 20181222,06:00,12:00,19,11,Partly sunny.,5,320,64,1018
1423
+ 20181222,12:00,18:00,19,17,Partly sunny.,17,310,70,1017
1424
+ 20181222,18:00,00:00,17,14,Fog.,7,110,83,1019
1425
+ 20181223,00:00,06:00,14,13,Fog.,4,90,87,1019
1426
+ 20181223,06:00,12:00,18,14,Scattered clouds.,7,90,74,1021
1427
+ 20181223,12:00,18:00,19,17,Partly sunny.,12,320,66,1019
1428
+ 20181223,18:00,00:00,17,13,Fog.,5,0,81,1019
1429
+ 20181224,00:00,06:00,16,14,Fog.,7,30,82,1018
1430
+ 20181224,06:00,12:00,17,14,Fog.,8,30,77,1018
1431
+ 20181224,12:00,18:00,18,16,Passing clouds.,9,270,73,1015
1432
+ 20181224,18:00,00:00,17,16,Passing clouds.,11,140,81,1014
1433
+ 20181225,00:00,06:00,17,17,Passing clouds.,26,280,69,1012
1434
+ 20181225,06:00,12:00,17,16,Light rain. Partly sunny.,26,270,66,1011
1435
+ 20181225,12:00,18:00,18,14,Scattered clouds.,7,80,67,1009
1436
+ 20181225,18:00,00:00,14,12,Clear.,3,100,78,1011
1437
+ 20181226,00:00,06:00,12,11,Clear.,1,40,78,1014
1438
+ 20181226,06:00,12:00,17,10,Passing clouds.,5,100,72,1017
1439
+ 20181226,12:00,18:00,18,17,Passing clouds.,8,280,58,1016
1440
+ 20181226,18:00,00:00,16,12,Passing clouds.,3,90,68,1017
1441
+ 20181227,00:00,06:00,12,10,Passing clouds.,2,90,75,1015
1442
+ 20181227,06:00,12:00,18,11,Broken clouds.,17,140,70,1014
1443
+ 20181227,12:00,18:00,18,16,Scattered clouds.,12,300,60,1011
1444
+ 20181227,18:00,00:00,16,12,Passing clouds.,2,340,72,1013
1445
+ 20181228,00:00,06:00,13,9,Passing clouds.,8,350,71,1015
1446
+ 20181228,06:00,12:00,16,9,Sunny.,3,330,36,1018
1447
+ 20181228,12:00,18:00,17,15,Sunny.,14,310,24,1018
1448
+ 20181228,18:00,00:00,13,9,Clear.,8,80,32,1022
1449
+ 20181229,00:00,06:00,9,7,Clear.,4,330,46,1024
1450
+ 20181229,06:00,12:00,16,7,Sunny.,4,190,34,1026
1451
+ 20181229,12:00,18:00,17,14,Sunny.,21,290,31,1023
1452
+ 20181229,18:00,00:00,13,11,Passing clouds.,3,70,49,1023
1453
+ 20181230,00:00,06:00,10,6,Clear.,3,120,54,1021
1454
+ 20181230,06:00,12:00,16,9,Sunny.,7,160,46,1019
1455
+ 20181230,12:00,18:00,17,16,Passing clouds.,13,200,64,1015
1456
+ 20181230,18:00,00:00,16,14,Passing clouds.,22,180,67,1015
1457
+ 20181231,00:00,06:00,16,15,Overcast.,22,200,68,1013
1458
+ 20181231,06:00,12:00,17,16,Broken clouds.,21,250,64,1012
1459
+ 20181231,12:00,18:00,16,13,Partly sunny.,17,250,67,1010
1460
+ 20181231,18:00,00:00,13,10,Light rain. Fog.,14,90,67,1013
weather/san-diego/raw_data/daily_weather_2019.csv ADDED
@@ -0,0 +1,1461 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20190101,00:00,06:00,11,9,Clear.,13,10,58,1015
3
+ 20190101,06:00,12:00,16,9,Sunny.,15,20,31,1019
4
+ 20190101,12:00,18:00,16,13,Sunny.,24,40,17,1019
5
+ 20190101,18:00,00:00,12,9,Clear.,10,90,24,1021
6
+ 20190102,00:00,06:00,9,5,Clear.,9,70,40,1020
7
+ 20190102,06:00,12:00,14,6,Sunny.,4,90,36,1023
8
+ 20190102,12:00,18:00,16,14,Sunny.,13,260,32,1022
9
+ 20190102,18:00,00:00,12,9,Clear.,3,80,49,1023
10
+ 20190103,00:00,06:00,7,4,Clear.,3,70,58,1022
11
+ 20190103,06:00,12:00,17,7,Sunny.,5,0,38,1022
12
+ 20190103,12:00,18:00,18,14,Passing clouds.,9,300,27,1019
13
+ 20190103,18:00,00:00,13,9,Clear.,1,80,56,1020
14
+ 20190104,00:00,06:00,9,6,Clear.,4,70,57,1018
15
+ 20190104,06:00,12:00,16,7,Sunny.,3,140,48,1018
16
+ 20190104,12:00,18:00,17,14,Passing clouds.,8,320,48,1015
17
+ 20190104,18:00,00:00,13,10,Passing clouds.,2,70,69,1015
18
+ 20190105,00:00,06:00,11,11,Clear.,1,100,64,1014
19
+ 20190105,06:00,12:00,16,11,Mostly cloudy.,6,140,61,1016
20
+ 20190105,12:00,18:00,16,14,Light rain. More clouds than sun.,18,160,60,1015
21
+ 20190105,18:00,00:00,13,13,Light rain. Mostly cloudy.,11,120,79,1015
22
+ 20190106,00:00,06:00,14,13,Mostly cloudy.,20,180,80,1016
23
+ 20190106,06:00,12:00,17,14,Partly sunny.,12,280,71,1019
24
+ 20190106,12:00,18:00,17,14,Passing clouds.,16,300,61,1020
25
+ 20190106,18:00,00:00,13,11,Clear.,1,120,74,1024
26
+ 20190107,00:00,06:00,10,9,Clear.,4,100,76,1024
27
+ 20190107,06:00,12:00,18,9,Partly sunny.,4,340,60,1024
28
+ 20190107,12:00,18:00,18,16,Passing clouds.,17,320,53,1022
29
+ 20190107,18:00,00:00,16,12,Passing clouds.,3,0,80,1022
30
+ 20190108,00:00,06:00,12,11,Passing clouds.,3,350,80,1020
31
+ 20190108,06:00,12:00,21,11,Partly sunny.,9,350,56,1019
32
+ 20190108,12:00,18:00,21,16,Partly sunny.,6,240,54,1018
33
+ 20190108,18:00,00:00,16,14,Passing clouds.,4,0,80,1020
34
+ 20190109,00:00,06:00,14,12,Passing clouds.,2,310,82,1020
35
+ 20190109,06:00,12:00,18,12,Scattered clouds.,5,10,73,1021
36
+ 20190109,12:00,18:00,18,16,Scattered clouds.,19,320,71,1019
37
+ 20190109,18:00,00:00,16,13,Passing clouds.,8,340,78,1020
38
+ 20190110,00:00,06:00,14,12,Passing clouds.,6,270,84,1020
39
+ 20190110,06:00,12:00,18,13,Broken clouds.,6,20,73,1021
40
+ 20190110,12:00,18:00,18,16,Scattered clouds.,17,320,68,1019
41
+ 20190110,18:00,00:00,16,15,Passing clouds.,11,340,76,1020
42
+ 20190111,00:00,06:00,14,12,Low clouds.,7,0,84,1019
43
+ 20190111,06:00,12:00,16,11,Partly sunny.,4,160,81,1019
44
+ 20190111,12:00,18:00,17,15,Partly sunny.,11,190,72,1017
45
+ 20190111,18:00,00:00,16,15,Passing clouds.,9,140,76,1016
46
+ 20190112,00:00,06:00,16,14,Passing clouds.,14,100,79,1016
47
+ 20190112,06:00,12:00,16,14,Broken clouds.,7,150,82,1017
48
+ 20190112,12:00,18:00,17,16,Broken clouds.,8,260,66,1016
49
+ 20190112,18:00,00:00,15,13,Passing clouds.,3,100,78,1018
50
+ 20190113,00:00,06:00,12,11,Clear.,4,60,79,1018
51
+ 20190113,06:00,12:00,16,11,Broken clouds.,6,40,67,1018
52
+ 20190113,12:00,18:00,17,15,Partly sunny.,3,200,66,1017
53
+ 20190113,18:00,00:00,15,13,Passing clouds.,7,90,72,1017
54
+ 20190114,00:00,06:00,16,14,Passing clouds.,10,120,59,1016
55
+ 20190114,06:00,12:00,16,14,Mostly cloudy.,23,110,62,1016
56
+ 20190114,12:00,18:00,16,14,Light rain. Mostly cloudy.,12,120,79,1015
57
+ 20190114,18:00,00:00,16,15,Partly cloudy.,7,110,79,1016
58
+ 20190115,00:00,06:00,16,14,Partly cloudy.,2,290,83,1016
59
+ 20190115,06:00,12:00,17,14,Light rain. Mostly cloudy.,10,100,76,1018
60
+ 20190115,12:00,18:00,17,17,Mostly cloudy.,22,160,72,1017
61
+ 20190115,18:00,00:00,17,17,Passing clouds.,25,160,78,1019
62
+ 20190116,00:00,06:00,17,16,Overcast.,12,180,80,1020
63
+ 20190116,06:00,12:00,19,16,Broken clouds.,11,140,68,1022
64
+ 20190116,12:00,18:00,21,18,Broken clouds.,10,270,67,1021
65
+ 20190116,18:00,00:00,18,18,Mostly cloudy.,5,100,79,1023
66
+ 20190117,00:00,06:00,17,16,Partly cloudy.,8,120,75,1022
67
+ 20190117,06:00,12:00,18,16,Mostly cloudy.,14,170,75,1023
68
+ 20190117,12:00,18:00,18,17,Light rain. Fog.,17,180,85,1022
69
+ 20190117,18:00,00:00,18,17,Mostly cloudy.,13,280,84,1023
70
+ 20190118,00:00,06:00,17,16,Partly cloudy.,3,300,82,1023
71
+ 20190118,06:00,12:00,19,14,Broken clouds.,6,330,78,1025
72
+ 20190118,12:00,18:00,19,17,Partly sunny.,20,320,70,1023
73
+ 20190118,18:00,00:00,17,15,Passing clouds.,6,340,78,1024
74
+ 20190119,00:00,06:00,14,12,Clear.,4,320,83,1023
75
+ 20190119,06:00,12:00,23,12,Passing clouds.,8,10,63,1024
76
+ 20190119,12:00,18:00,24,19,Passing clouds.,17,330,43,1020
77
+ 20190119,18:00,00:00,18,15,Passing clouds.,3,350,63,1020
78
+ 20190120,00:00,06:00,15,12,Clear.,3,0,73,1018
79
+ 20190120,06:00,12:00,21,13,Partly sunny.,4,150,59,1019
80
+ 20190120,12:00,18:00,22,18,Partly sunny.,9,260,59,1016
81
+ 20190120,18:00,00:00,18,17,Passing clouds.,13,300,78,1017
82
+ 20190121,00:00,06:00,17,16,Mostly cloudy.,26,290,69,1018
83
+ 20190121,06:00,12:00,18,16,Sunny.,27,320,48,1019
84
+ 20190121,12:00,18:00,18,16,Sunny.,29,300,49,1017
85
+ 20190121,18:00,00:00,16,12,Clear.,18,310,61,1019
86
+ 20190122,00:00,06:00,12,9,Clear.,0,0,73,1020
87
+ 20190122,06:00,12:00,17,9,Sunny.,6,220,62,1023
88
+ 20190122,12:00,18:00,19,17,Scattered clouds.,19,280,42,1023
89
+ 20190122,18:00,00:00,16,11,Passing clouds.,8,100,55,1026
90
+ 20190123,00:00,06:00,12,9,Passing clouds.,7,40,46,1026
91
+ 20190123,06:00,12:00,19,10,Passing clouds.,7,350,32,1027
92
+ 20190123,12:00,18:00,19,16,Passing clouds.,22,320,46,1022
93
+ 20190123,18:00,00:00,16,12,Clear.,6,0,66,1021
94
+ 20190124,00:00,06:00,11,10,Clear.,5,330,67,1019
95
+ 20190124,06:00,12:00,23,9,Scattered clouds.,6,300,48,1019
96
+ 20190124,12:00,18:00,23,18,Partly sunny.,11,330,35,1019
97
+ 20190124,18:00,00:00,17,13,Passing clouds.,5,330,66,1019
98
+ 20190125,00:00,06:00,12,9,Passing clouds.,3,350,64,1019
99
+ 20190125,06:00,12:00,23,9,Passing clouds.,8,320,42,1020
100
+ 20190125,12:00,18:00,24,18,Passing clouds.,19,330,28,1018
101
+ 20190125,18:00,00:00,18,12,Passing clouds.,7,340,56,1020
102
+ 20190126,00:00,06:00,13,11,Clear.,5,0,60,1021
103
+ 20190126,06:00,12:00,25,14,Passing clouds.,11,310,30,1021
104
+ 20190126,12:00,18:00,23,19,Partly sunny.,16,300,37,1020
105
+ 20190126,18:00,00:00,17,14,Passing clouds.,1,290,63,1022
106
+ 20190127,00:00,06:00,13,10,Clear.,2,80,65,1021
107
+ 20190127,06:00,12:00,24,12,Scattered clouds.,2,340,39,1020
108
+ 20190127,12:00,18:00,24,18,Partly sunny.,8,200,37,1017
109
+ 20190127,18:00,00:00,16,12,Passing clouds.,0,0,56,1017
110
+ 20190128,00:00,06:00,12,11,Clear.,2,350,64,1015
111
+ 20190128,06:00,12:00,22,11,Partly sunny.,6,330,53,1016
112
+ 20190128,12:00,18:00,22,16,Broken clouds.,8,290,51,1014
113
+ 20190128,18:00,00:00,16,14,Passing clouds.,0,0,83,1015
114
+ 20190129,00:00,06:00,14,13,Fog.,3,100,90,1014
115
+ 20190129,06:00,12:00,18,13,Fog.,5,0,79,1014
116
+ 20190129,12:00,18:00,18,17,Partly sunny.,9,260,76,1012
117
+ 20190129,18:00,00:00,18,17,Passing clouds.,8,200,75,1012
118
+ 20190130,00:00,06:00,17,17,Passing clouds.,9,180,72,1012
119
+ 20190130,06:00,12:00,19,16,Partly sunny.,8,100,64,1014
120
+ 20190130,12:00,18:00,21,18,Scattered clouds.,11,210,56,1013
121
+ 20190130,18:00,00:00,18,16,Passing clouds.,6,270,67,1014
122
+ 20190131,00:00,06:00,17,14,Passing clouds.,5,100,72,1014
123
+ 20190131,06:00,12:00,21,16,Partly sunny.,16,150,64,1015
124
+ 20190131,12:00,18:00,20,17,Light rain. Broken clouds.,14,180,73,1013
125
+ 20190131,18:00,00:00,17,15,Partly cloudy.,7,240,70,1014
126
+ 20190201,00:00,06:00,14,14,Partly cloudy.,5,90,75,1015
127
+ 20190201,06:00,12:00,19,14,Broken clouds.,11,210,65,1016
128
+ 20190201,12:00,18:00,19,18,More clouds than sun.,5,190,58,1015
129
+ 20190201,18:00,00:00,19,18,Overcast.,15,150,62,1015
130
+ 20190202,00:00,06:00,19,18,Light rain. Overcast.,19,150,63,1013
131
+ 20190202,06:00,12:00,21,18,More clouds than sun.,33,150,61,1012
132
+ 20190202,12:00,18:00,21,16,Light rain. Fog.,35,160,67,1009
133
+ 20190202,18:00,00:00,17,16,Light rain. Fog.,15,100,69,1012
134
+ 20190203,00:00,06:00,17,16,Mostly cloudy.,11,180,69,1013
135
+ 20190203,06:00,12:00,19,14,Broken clouds.,11,110,66,1014
136
+ 20190203,12:00,18:00,20,18,Partly sunny.,13,240,54,1013
137
+ 20190203,18:00,00:00,18,16,Passing clouds.,8,230,62,1013
138
+ 20190204,00:00,06:00,17,16,Overcast.,13,130,67,1012
139
+ 20190204,06:00,12:00,19,17,Broken clouds.,19,210,65,1013
140
+ 20190204,12:00,18:00,19,17,Light rain. Fog.,20,230,67,1011
141
+ 20190204,18:00,00:00,17,16,Light rain. Partly cloudy.,16,220,69,1012
142
+ 20190205,00:00,06:00,17,14,Passing clouds.,9,250,62,1013
143
+ 20190205,06:00,12:00,17,14,Light rain. Partly sunny.,13,240,64,1014
144
+ 20190205,12:00,18:00,17,16,Broken clouds.,21,300,55,1014
145
+ 20190205,18:00,00:00,16,14,Passing clouds.,23,290,48,1016
146
+ 20190206,00:00,06:00,14,13,Passing clouds.,22,320,45,1017
147
+ 20190206,06:00,12:00,16,12,Passing clouds.,9,40,37,1020
148
+ 20190206,12:00,18:00,17,16,Scattered clouds.,15,290,40,1020
149
+ 20190206,18:00,00:00,15,12,Passing clouds.,10,80,51,1023
150
+ 20190207,00:00,06:00,11,8,Passing clouds.,6,70,57,1023
151
+ 20190207,06:00,12:00,17,8,Sunny.,6,350,43,1024
152
+ 20190207,12:00,18:00,18,16,Sunny.,19,320,35,1022
153
+ 20190207,18:00,00:00,16,12,Passing clouds.,6,90,50,1022
154
+ 20190208,00:00,06:00,12,9,Passing clouds.,5,90,51,1020
155
+ 20190208,06:00,12:00,18,8,Sunny.,4,80,40,1020
156
+ 20190208,12:00,18:00,18,16,Scattered clouds.,17,290,49,1018
157
+ 20190208,18:00,00:00,15,14,Passing clouds.,6,10,61,1018
158
+ 20190209,00:00,06:00,14,12,Clear.,5,10,67,1017
159
+ 20190209,06:00,12:00,16,12,Broken clouds.,7,170,67,1018
160
+ 20190209,12:00,18:00,17,16,Partly sunny.,9,160,62,1017
161
+ 20190209,18:00,00:00,16,12,Passing clouds.,3,280,70,1018
162
+ 20190210,00:00,06:00,11,10,Passing clouds.,5,90,71,1018
163
+ 20190210,06:00,12:00,17,11,Broken clouds.,9,120,61,1018
164
+ 20190210,12:00,18:00,18,17,Partly sunny.,22,270,48,1017
165
+ 20190210,18:00,00:00,16,14,Passing clouds.,21,310,57,1018
166
+ 20190211,00:00,06:00,12,9,Clear.,8,90,62,1019
167
+ 20190211,06:00,12:00,17,9,Passing clouds.,3,80,50,1021
168
+ 20190211,12:00,18:00,17,15,Passing clouds.,20,320,40,1020
169
+ 20190211,18:00,00:00,15,12,Clear.,6,0,50,1021
170
+ 20190212,00:00,06:00,11,8,Passing clouds.,5,90,60,1019
171
+ 20190212,06:00,12:00,22,9,Partly sunny.,4,50,33,1020
172
+ 20190212,12:00,18:00,23,18,Partly sunny.,6,200,22,1017
173
+ 20190212,18:00,00:00,17,14,Passing clouds.,4,190,60,1017
174
+ 20190213,00:00,06:00,14,14,Passing clouds.,2,60,50,1015
175
+ 20190213,06:00,12:00,21,14,Broken clouds.,12,110,41,1015
176
+ 20190213,12:00,18:00,18,13,Light rain. Mostly cloudy.,16,120,70,1014
177
+ 20190213,18:00,00:00,18,14,Light rain. Partly cloudy.,11,120,78,1014
178
+ 20190214,00:00,06:00,18,18,Rain. Partly cloudy.,42,170,74,1011
179
+ 20190214,06:00,12:00,19,18,Light rain. Fog.,53,180,77,1010
180
+ 20190214,12:00,18:00,19,18,Light rain. Fog.,23,260,74,1012
181
+ 20190214,18:00,00:00,18,16,Partly cloudy.,8,250,68,1016
182
+ 20190215,00:00,06:00,15,13,Partly cloudy.,5,100,76,1017
183
+ 20190215,06:00,12:00,19,13,Broken clouds.,4,290,63,1020
184
+ 20190215,12:00,18:00,19,17,Partly sunny.,11,270,53,1020
185
+ 20190215,18:00,00:00,18,16,Passing clouds.,17,220,62,1020
186
+ 20190216,00:00,06:00,17,15,Passing clouds.,27,300,56,1020
187
+ 20190216,06:00,12:00,18,14,Scattered clouds.,23,300,48,1021
188
+ 20190216,12:00,18:00,18,17,Broken clouds.,22,300,46,1020
189
+ 20190216,18:00,00:00,17,16,Passing clouds.,23,300,53,1020
190
+ 20190217,00:00,06:00,16,15,Partly cloudy.,27,310,53,1019
191
+ 20190217,06:00,12:00,17,15,Broken clouds.,30,290,44,1020
192
+ 20190217,12:00,18:00,18,15,Mostly cloudy.,23,260,54,1017
193
+ 20190217,18:00,00:00,15,13,Passing clouds.,31,280,55,1017
194
+ 20190218,00:00,06:00,14,13,Clear.,26,300,46,1017
195
+ 20190218,06:00,12:00,16,11,Broken clouds.,6,60,44,1018
196
+ 20190218,12:00,18:00,16,14,Broken clouds.,15,260,40,1016
197
+ 20190218,18:00,00:00,12,10,Passing clouds.,10,100,57,1019
198
+ 20190219,00:00,06:00,9,6,Clear.,4,90,65,1019
199
+ 20190219,06:00,12:00,14,8,Passing clouds.,5,180,50,1021
200
+ 20190219,12:00,18:00,17,14,Passing clouds.,12,260,34,1019
201
+ 20190219,18:00,00:00,14,11,Clear.,3,110,50,1020
202
+ 20190220,00:00,06:00,10,7,Clear.,3,60,57,1018
203
+ 20190220,06:00,12:00,15,8,Scattered clouds.,11,110,52,1017
204
+ 20190220,12:00,18:00,16,14,Partly sunny.,17,210,59,1012
205
+ 20190220,18:00,00:00,14,12,Partly cloudy.,18,270,66,1009
206
+ 20190221,00:00,06:00,14,14,Partly cloudy.,27,280,54,1006
207
+ 20190221,06:00,12:00,16,13,Broken clouds.,26,250,54,1005
208
+ 20190221,12:00,18:00,15,12,Broken clouds.,23,280,52,1004
209
+ 20190221,18:00,00:00,13,9,Partly cloudy.,14,250,56,1006
210
+ 20190222,00:00,06:00,9,7,Passing clouds.,4,90,68,1010
211
+ 20190222,06:00,12:00,15,7,Passing clouds.,7,90,58,1015
212
+ 20190222,12:00,18:00,17,14,Passing clouds.,13,280,41,1018
213
+ 20190222,18:00,00:00,14,11,Passing clouds.,2,330,56,1022
214
+ 20190223,00:00,06:00,9,7,Clear.,6,80,59,1024
215
+ 20190223,06:00,12:00,17,8,Sunny.,5,180,47,1026
216
+ 20190223,12:00,18:00,18,16,Scattered clouds.,20,300,40,1024
217
+ 20190223,18:00,00:00,15,11,Passing clouds.,7,0,56,1024
218
+ 20190224,00:00,06:00,12,9,Clear.,0,0,60,1023
219
+ 20190224,06:00,12:00,18,10,Passing clouds.,8,310,41,1022
220
+ 20190224,12:00,18:00,18,17,Passing clouds.,20,310,41,1018
221
+ 20190224,18:00,00:00,15,13,Passing clouds.,5,310,63,1019
222
+ 20190225,00:00,06:00,12,11,Clear.,3,100,61,1018
223
+ 20190225,06:00,12:00,18,11,Scattered clouds.,7,130,54,1019
224
+ 20190225,12:00,18:00,19,17,Passing clouds.,14,320,51,1017
225
+ 20190225,18:00,00:00,16,14,Passing clouds.,5,320,72,1018
226
+ 20190226,00:00,06:00,13,12,Passing clouds.,4,0,75,1018
227
+ 20190226,06:00,12:00,17,12,Partly sunny.,5,50,69,1019
228
+ 20190226,12:00,18:00,18,16,Partly sunny.,9,290,62,1017
229
+ 20190226,18:00,00:00,16,16,Passing clouds.,1,290,70,1019
230
+ 20190227,00:00,06:00,15,13,Partly cloudy.,1,100,75,1019
231
+ 20190227,06:00,12:00,19,12,Passing clouds.,6,170,64,1021
232
+ 20190227,12:00,18:00,19,18,Passing clouds.,16,290,55,1020
233
+ 20190227,18:00,00:00,17,16,Passing clouds.,10,0,63,1021
234
+ 20190228,00:00,06:00,17,15,Passing clouds.,3,70,66,1020
235
+ 20190228,06:00,12:00,22,14,Broken clouds.,4,270,55,1020
236
+ 20190228,12:00,18:00,22,18,Partly sunny.,16,300,61,1018
237
+ 20190228,18:00,00:00,18,18,Passing clouds.,11,320,74,1019
238
+ 20190301,00:00,06:00,18,17,Passing clouds.,9,340,74,1018
239
+ 20190301,06:00,12:00,20,17,Partly sunny.,15,330,68,1019
240
+ 20190301,12:00,18:00,20,18,Broken clouds.,19,320,64,1017
241
+ 20190301,18:00,00:00,18,17,Partly cloudy.,7,290,69,1017
242
+ 20190302,00:00,06:00,17,17,Light rain. Mostly cloudy.,9,140,74,1016
243
+ 20190302,06:00,12:00,18,17,Light rain. Mostly cloudy.,20,140,74,1018
244
+ 20190302,12:00,18:00,19,18,Broken clouds.,30,180,72,1017
245
+ 20190302,18:00,00:00,18,18,Overcast.,13,190,75,1019
246
+ 20190303,00:00,06:00,,,Not Available,,,,
247
+ 20190303,06:00,12:00,22,19,Broken clouds.,8,260,58,1020
248
+ 20190303,12:00,18:00,22,22,Broken clouds.,12,280,53,1018
249
+ 20190303,18:00,00:00,21,19,Partly cloudy.,12,320,58,1019
250
+ 20190304,00:00,06:00,17,17,Passing clouds.,13,330,65,1018
251
+ 20190304,06:00,12:00,19,17,Broken clouds.,12,300,61,1019
252
+ 20190304,12:00,18:00,19,17,Broken clouds.,20,300,58,1018
253
+ 20190304,18:00,00:00,17,16,Passing clouds.,15,350,62,1017
254
+ 20190305,00:00,06:00,16,13,Passing clouds.,4,350,66,1016
255
+ 20190305,06:00,12:00,23,14,Scattered clouds.,5,200,52,1016
256
+ 20190305,12:00,18:00,23,18,Broken clouds.,13,0,54,1016
257
+ 20190305,18:00,00:00,21,18,Passing clouds.,14,120,54,1014
258
+ 20190306,00:00,06:00,20,19,Passing clouds.,7,160,61,1012
259
+ 20190306,06:00,12:00,21,18,Broken clouds.,13,180,61,1017
260
+ 20190306,12:00,18:00,20,18,Light rain. Mostly cloudy.,11,150,67,1016
261
+ 20190306,18:00,00:00,18,18,Light rain. Fog.,9,170,75,1017
262
+ 20190307,00:00,06:00,18,17,Passing clouds.,6,110,76,1017
263
+ 20190307,06:00,12:00,21,18,Broken clouds.,12,330,64,1018
264
+ 20190307,12:00,18:00,20,17,Broken clouds.,15,280,52,1017
265
+ 20190307,18:00,00:00,17,16,Passing clouds.,7,280,57,1017
266
+ 20190308,00:00,06:00,17,15,Light rain. Partly cloudy.,20,300,58,1016
267
+ 20190308,06:00,12:00,18,16,Broken clouds.,19,290,52,1018
268
+ 20190308,12:00,18:00,19,16,Scattered clouds.,23,300,46,1018
269
+ 20190308,18:00,00:00,16,15,Partly cloudy.,15,300,49,1018
270
+ 20190309,00:00,06:00,,,Not Available,,,,
271
+ 20190309,06:00,12:00,16,13,Partly sunny.,9,140,60,1018
272
+ 20190309,12:00,18:00,,,Not Available,,,,
273
+ 20190309,18:00,00:00,,,Not Available,,,,
274
+ 20190310,00:00,06:00,,,Not Available,,,,
275
+ 20190310,06:00,12:00,16,12,Broken clouds.,3,200,55,1015
276
+ 20190310,12:00,18:00,17,16,Broken clouds.,15,210,41,1014
277
+ 20190310,18:00,00:00,16,14,Passing clouds.,2,270,58,1015
278
+ 20190311,00:00,06:00,12,12,Passing clouds.,7,130,69,1012
279
+ 20190311,06:00,12:00,15,12,Mostly cloudy.,3,130,62,1012
280
+ 20190311,12:00,18:00,17,16,Light rain. Overcast.,19,320,58,1010
281
+ 20190311,18:00,00:00,15,14,Light rain. Overcast.,10,30,72,1009
282
+ 20190312,00:00,06:00,14,13,Light rain. Overcast.,16,0,75,1008
283
+ 20190312,06:00,12:00,18,13,Partly sunny.,12,0,71,1009
284
+ 20190312,12:00,18:00,19,17,Scattered clouds.,16,280,59,1009
285
+ 20190312,18:00,00:00,17,16,Passing clouds.,17,240,66,1012
286
+ 20190313,00:00,06:00,15,15,Partly cloudy.,18,290,58,1013
287
+ 20190313,06:00,12:00,18,15,Scattered clouds.,11,230,62,1016
288
+ 20190313,12:00,18:00,18,18,Passing clouds.,17,280,56,1016
289
+ 20190313,18:00,00:00,17,16,Passing clouds.,11,340,60,1018
290
+ 20190314,00:00,06:00,14,13,Clear.,6,340,68,1019
291
+ 20190314,06:00,12:00,21,12,Sunny.,2,320,50,1021
292
+ 20190314,12:00,18:00,22,21,Passing clouds.,19,290,25,1020
293
+ 20190314,18:00,00:00,18,14,Passing clouds.,10,340,49,1021
294
+ 20190315,00:00,06:00,14,13,Passing clouds.,4,140,57,1020
295
+ 20190315,06:00,12:00,21,12,Partly sunny.,6,100,46,1019
296
+ 20190315,12:00,18:00,23,21,Partly sunny.,20,290,26,1016
297
+ 20190315,18:00,00:00,19,16,Passing clouds.,8,310,53,1016
298
+ 20190316,00:00,06:00,,,Not Available,,,,
299
+ 20190316,06:00,12:00,21,12,Sunny.,3,330,40,1017
300
+ 20190316,12:00,18:00,24,22,Sunny.,17,340,29,1015
301
+ 20190316,18:00,00:00,22,19,Clear.,10,350,33,1016
302
+ 20190317,00:00,06:00,,,Not Available,,,,
303
+ 20190317,06:00,12:00,24,13,Sunny.,1,320,51,1016
304
+ 20190317,12:00,18:00,25,19,Passing clouds.,15,180,62,1015
305
+ 20190317,18:00,00:00,18,16,Clear.,3,190,73,1016
306
+ 20190318,00:00,06:00,13,13,Clear.,0,0,72,1014
307
+ 20190318,06:00,12:00,19,14,Passing clouds.,7,200,66,1015
308
+ 20190318,12:00,18:00,19,17,Partly sunny.,11,210,76,1015
309
+ 20190318,18:00,00:00,17,16,Passing clouds.,0,0,79,1015
310
+ 20190319,00:00,06:00,16,15,Fog.,3,250,81,1014
311
+ 20190319,06:00,12:00,19,15,Partly sunny.,16,190,72,1016
312
+ 20190319,12:00,18:00,21,19,Scattered clouds.,23,180,61,1015
313
+ 20190319,18:00,00:00,18,18,Passing clouds.,17,170,65,1016
314
+ 20190320,00:00,06:00,18,17,Partly cloudy.,10,150,64,1016
315
+ 20190320,06:00,12:00,21,17,Broken clouds.,11,160,61,1017
316
+ 20190320,12:00,18:00,21,16,Broken clouds.,13,270,62,1017
317
+ 20190320,18:00,00:00,18,17,Passing clouds.,15,310,64,1019
318
+ 20190321,00:00,06:00,17,16,Partly cloudy.,13,300,60,1020
319
+ 20190321,06:00,12:00,19,16,Broken clouds.,5,20,53,1021
320
+ 20190321,12:00,18:00,20,17,Broken clouds.,18,210,64,1020
321
+ 20190321,18:00,00:00,18,17,Passing clouds.,11,300,64,1021
322
+ 20190322,00:00,06:00,16,13,Partly cloudy.,5,10,70,1021
323
+ 20190322,06:00,12:00,20,14,Scattered clouds.,6,100,61,1022
324
+ 20190322,12:00,18:00,21,19,Scattered clouds.,19,300,53,1021
325
+ 20190322,18:00,00:00,18,17,Passing clouds.,13,310,62,1021
326
+ 20190323,00:00,06:00,16,14,Clear.,1,90,67,1021
327
+ 20190323,06:00,12:00,21,14,Scattered clouds.,7,190,62,1022
328
+ 20190323,12:00,18:00,22,20,Scattered clouds.,21,290,51,1021
329
+ 20190323,18:00,00:00,19,19,Passing clouds.,13,320,59,1021
330
+ 20190324,00:00,06:00,19,16,Mostly cloudy.,9,320,62,1021
331
+ 20190324,06:00,12:00,21,16,Scattered clouds.,7,230,56,1022
332
+ 20190324,12:00,18:00,22,21,Partly sunny.,20,300,52,1021
333
+ 20190324,18:00,00:00,19,18,Clear.,12,320,62,1021
334
+ 20190325,00:00,06:00,18,17,Passing clouds.,7,10,66,1020
335
+ 20190325,06:00,12:00,23,16,Sunny.,8,340,58,1020
336
+ 20190325,12:00,18:00,23,22,Passing clouds.,20,290,52,1019
337
+ 20190325,18:00,00:00,21,19,Passing clouds.,15,320,59,1018
338
+ 20190326,00:00,06:00,19,18,Passing clouds.,6,20,60,1017
339
+ 20190326,06:00,12:00,18,13,Broken clouds.,11,20,78,1017
340
+ 20190326,12:00,18:00,20,17,Partly sunny.,17,300,60,1016
341
+ 20190326,18:00,00:00,17,16,Passing clouds.,12,320,72,1016
342
+ 20190327,00:00,06:00,16,16,Passing clouds.,6,330,75,1016
343
+ 20190327,06:00,12:00,18,14,Broken clouds.,6,350,67,1018
344
+ 20190327,12:00,18:00,19,17,Broken clouds.,21,320,58,1018
345
+ 20190327,18:00,00:00,17,14,Passing clouds.,14,330,75,1020
346
+ 20190328,00:00,06:00,14,14,Passing clouds.,15,340,92,1021
347
+ 20190328,06:00,12:00,22,15,Scattered clouds.,13,350,73,1022
348
+ 20190328,12:00,18:00,22,18,Broken clouds.,24,290,63,1022
349
+ 20190328,18:00,00:00,16,15,Passing clouds.,15,320,72,1023
350
+ 20190329,00:00,06:00,16,13,Passing clouds.,1,330,73,1022
351
+ 20190329,06:00,12:00,19,13,Partly sunny.,5,160,71,1022
352
+ 20190329,12:00,18:00,18,17,Partly sunny.,24,300,64,1020
353
+ 20190329,18:00,00:00,21,14,Passing clouds.,8,320,64,1019
354
+ 20190330,00:00,06:00,19,18,Clear.,3,200,61,1018
355
+ 20190330,06:00,12:00,18,16,Passing clouds.,7,180,62,1017
356
+ 20190330,12:00,18:00,25,19,Sunny.,25,320,50,1015
357
+ 20190330,18:00,00:00,22,18,Clear.,11,10,43,1016
358
+ 20190331,00:00,06:00,19,16,Clear.,5,350,53,1016
359
+ 20190331,06:00,12:00,23,16,Scattered clouds.,6,330,47,1017
360
+ 20190331,12:00,18:00,27,23,Scattered clouds.,18,300,26,1014
361
+ 20190331,18:00,00:00,23,20,Passing clouds.,11,0,32,1015
362
+ 20190401,00:00,06:00,21,18,Clear.,1,130,45,1014
363
+ 20190401,06:00,12:00,23,16,Partly sunny.,6,190,53,1014
364
+ 20190401,12:00,18:00,24,18,Partly sunny.,13,180,66,1013
365
+ 20190401,18:00,00:00,18,17,Passing clouds.,5,170,80,1013
366
+ 20190402,00:00,06:00,18,15,Fog.,9,200,81,1013
367
+ 20190402,06:00,12:00,23,15,Partly sunny.,13,130,74,1015
368
+ 20190402,12:00,18:00,23,17,Partly sunny.,15,210,67,1015
369
+ 20190402,18:00,00:00,18,16,Passing clouds.,8,200,77,1015
370
+ 20190403,00:00,06:00,17,15,Passing clouds.,11,200,78,1016
371
+ 20190403,06:00,12:00,17,15,Broken clouds.,9,300,68,1018
372
+ 20190403,12:00,18:00,18,17,Partly sunny.,15,270,66,1018
373
+ 20190403,18:00,00:00,16,15,Passing clouds.,13,320,78,1018
374
+ 20190404,00:00,06:00,19,15,Passing clouds.,2,340,70,1018
375
+ 20190404,06:00,12:00,18,15,Broken clouds.,5,210,80,1019
376
+ 20190404,12:00,18:00,21,16,Broken clouds.,12,270,66,1018
377
+ 20190404,18:00,00:00,17,16,Partly cloudy.,1,250,67,1017
378
+ 20190405,00:00,06:00,17,16,Partly cloudy.,4,150,75,1016
379
+ 20190405,06:00,12:00,17,14,Light rain. Partly sunny.,7,50,86,1017
380
+ 20190405,12:00,18:00,18,17,Broken clouds.,16,250,68,1017
381
+ 20190405,18:00,00:00,22,16,Partly cloudy.,14,320,66,1018
382
+ 20190406,00:00,06:00,18,17,Overcast.,11,310,69,1018
383
+ 20190406,06:00,12:00,19,16,Broken clouds.,9,30,71,1019
384
+ 20190406,12:00,18:00,22,18,Scattered clouds.,23,280,59,1019
385
+ 20190406,18:00,00:00,19,17,Passing clouds.,14,320,70,1020
386
+ 20190407,00:00,06:00,18,17,Clear.,2,60,68,1020
387
+ 20190407,06:00,12:00,19,14,Partly sunny.,9,340,76,1021
388
+ 20190407,12:00,18:00,21,19,Scattered clouds.,23,310,66,1019
389
+ 20190407,18:00,00:00,20,18,Passing clouds.,9,340,72,1018
390
+ 20190408,00:00,06:00,20,16,Clear.,6,10,70,1018
391
+ 20190408,06:00,12:00,24,17,Partly sunny.,4,290,57,1018
392
+ 20190408,12:00,18:00,24,22,Partly sunny.,13,310,49,1016
393
+ 20190408,18:00,00:00,22,20,Passing clouds.,4,320,62,1016
394
+ 20190409,00:00,06:00,19,18,Passing clouds.,1,260,73,1015
395
+ 20190409,06:00,12:00,22,18,Broken clouds.,10,260,75,1017
396
+ 20190409,12:00,18:00,20,18,Broken clouds.,22,290,74,1016
397
+ 20190409,18:00,00:00,18,16,Passing clouds.,19,290,76,1015
398
+ 20190410,00:00,06:00,22,16,Passing clouds.,28,320,53,1016
399
+ 20190410,06:00,12:00,19,15,Sunny.,15,30,51,1018
400
+ 20190410,12:00,18:00,20,18,Sunny.,23,300,50,1018
401
+ 20190410,18:00,00:00,17,13,Clear.,7,310,73,1018
402
+ 20190411,00:00,06:00,14,11,Clear.,3,70,80,1017
403
+ 20190411,06:00,12:00,18,9,Sunny.,7,200,60,1017
404
+ 20190411,12:00,18:00,19,17,Broken clouds.,16,250,69,1014
405
+ 20190411,18:00,00:00,16,15,Partly cloudy.,11,190,79,1011
406
+ 20190412,00:00,06:00,15,14,Partly cloudy.,6,220,82,1009
407
+ 20190412,06:00,12:00,18,14,Passing clouds.,8,230,68,1009
408
+ 20190412,12:00,18:00,19,18,Passing clouds.,20,300,62,1009
409
+ 20190412,18:00,00:00,17,14,Clear.,9,270,75,1011
410
+ 20190413,00:00,06:00,14,12,Clear.,1,180,88,1012
411
+ 20190413,06:00,12:00,21,12,Sunny.,6,170,58,1015
412
+ 20190413,12:00,18:00,21,19,Sunny.,18,310,55,1015
413
+ 20190413,18:00,00:00,19,16,Clear.,9,310,73,1015
414
+ 20190414,00:00,06:00,16,13,Clear.,1,70,88,1015
415
+ 20190414,06:00,12:00,20,13,Partly sunny.,9,320,67,1015
416
+ 20190414,12:00,18:00,20,18,Scattered clouds.,23,310,64,1013
417
+ 20190414,18:00,00:00,17,15,Passing clouds.,12,320,81,1012
418
+ 20190415,00:00,06:00,15,14,Passing clouds.,10,350,85,1011
419
+ 20190415,06:00,12:00,17,14,Broken clouds.,11,310,73,1013
420
+ 20190415,12:00,18:00,18,16,Scattered clouds.,16,270,67,1012
421
+ 20190415,18:00,00:00,16,15,Passing clouds.,11,240,72,1014
422
+ 20190416,00:00,06:00,15,14,Passing clouds.,11,230,71,1014
423
+ 20190416,06:00,12:00,16,14,Partly sunny.,14,250,70,1016
424
+ 20190416,12:00,18:00,18,16,Broken clouds.,14,250,65,1016
425
+ 20190416,18:00,00:00,17,15,Passing clouds.,16,300,75,1018
426
+ 20190417,00:00,06:00,15,12,Passing clouds.,6,320,78,1019
427
+ 20190417,06:00,12:00,19,13,Passing clouds.,6,170,72,1020
428
+ 20190417,12:00,18:00,22,19,Passing clouds.,23,310,61,1019
429
+ 20190417,18:00,00:00,18,16,Passing clouds.,15,340,72,1019
430
+ 20190418,00:00,06:00,16,14,Passing clouds.,6,10,80,1019
431
+ 20190418,06:00,12:00,21,14,Partly sunny.,8,220,67,1019
432
+ 20190418,12:00,18:00,22,18,Scattered clouds.,19,310,62,1017
433
+ 20190418,18:00,00:00,17,16,Passing clouds.,9,320,81,1017
434
+ 20190419,00:00,06:00,16,15,Passing clouds.,11,340,86,1016
435
+ 20190419,06:00,12:00,19,15,Scattered clouds.,13,330,76,1014
436
+ 20190419,12:00,18:00,18,16,Partly sunny.,21,300,72,1014
437
+ 20190419,18:00,00:00,16,14,Passing clouds.,8,310,80,1014
438
+ 20190420,00:00,06:00,15,15,Overcast.,8,270,75,1014
439
+ 20190420,06:00,12:00,18,15,Partly sunny.,12,260,67,1015
440
+ 20190420,12:00,18:00,18,17,Partly sunny.,18,290,59,1016
441
+ 20190420,18:00,00:00,16,15,Passing clouds.,9,280,65,1016
442
+ 20190421,00:00,06:00,15,14,Overcast.,5,170,72,1016
443
+ 20190421,06:00,12:00,17,14,Broken clouds.,15,260,68,1017
444
+ 20190421,12:00,18:00,17,16,Passing clouds.,14,210,57,1016
445
+ 20190421,18:00,00:00,15,14,Passing clouds.,8,180,66,1016
446
+ 20190422,00:00,06:00,14,12,Passing clouds.,7,180,71,1016
447
+ 20190422,06:00,12:00,17,12,Scattered clouds.,8,90,64,1016
448
+ 20190422,12:00,18:00,19,18,Scattered clouds.,15,290,61,1015
449
+ 20190422,18:00,00:00,17,16,Passing clouds.,11,300,77,1015
450
+ 20190423,00:00,06:00,16,14,Passing clouds.,2,220,83,1015
451
+ 20190423,06:00,12:00,18,15,Overcast.,10,180,76,1015
452
+ 20190423,12:00,18:00,19,17,Passing clouds.,12,250,72,1014
453
+ 20190423,18:00,00:00,18,16,Passing clouds.,8,190,84,1014
454
+ 20190424,00:00,06:00,16,14,Fog.,6,200,90,1015
455
+ 20190424,06:00,12:00,17,14,Drizzle. Fog.,9,160,86,1017
456
+ 20190424,12:00,18:00,20,18,Passing clouds.,13,270,70,1014
457
+ 20190424,18:00,00:00,17,16,Passing clouds.,9,270,83,1015
458
+ 20190425,00:00,06:00,16,14,Low clouds.,3,220,88,1015
459
+ 20190425,06:00,12:00,19,14,Passing clouds.,8,200,79,1015
460
+ 20190425,12:00,18:00,19,18,Passing clouds.,16,290,70,1015
461
+ 20190425,18:00,00:00,17,15,Low clouds.,8,270,83,1015
462
+ 20190426,00:00,06:00,16,15,Overcast.,3,190,84,1015
463
+ 20190426,06:00,12:00,18,16,Overcast.,7,10,76,1016
464
+ 20190426,12:00,18:00,19,17,Scattered clouds.,15,270,67,1016
465
+ 20190426,18:00,00:00,16,16,Passing clouds.,8,280,73,1016
466
+ 20190427,00:00,06:00,16,15,Overcast.,9,300,76,1016
467
+ 20190427,06:00,12:00,19,16,Overcast.,8,320,68,1016
468
+ 20190427,12:00,18:00,19,17,Scattered clouds.,20,300,66,1014
469
+ 20190427,18:00,00:00,17,16,Overcast.,13,290,76,1014
470
+ 20190428,00:00,06:00,16,16,Overcast.,5,260,77,1013
471
+ 20190428,06:00,12:00,18,16,Overcast.,11,290,68,1012
472
+ 20190428,12:00,18:00,18,17,Broken clouds.,18,270,68,1010
473
+ 20190428,18:00,00:00,17,16,Overcast.,9,250,74,1011
474
+ 20190429,00:00,06:00,16,15,Overcast.,13,130,80,1010
475
+ 20190429,06:00,12:00,17,16,Broken clouds.,23,170,78,1011
476
+ 20190429,12:00,18:00,18,15,Broken clouds.,15,200,78,1011
477
+ 20190429,18:00,00:00,16,15,Partly cloudy.,6,190,83,1013
478
+ 20190430,00:00,06:00,15,14,Partly cloudy.,7,250,87,1014
479
+ 20190430,06:00,12:00,16,14,Light rain. Fog.,7,160,92,1015
480
+ 20190430,12:00,18:00,17,17,Cloudy.,14,280,70,1016
481
+ 20190430,18:00,00:00,17,16,Overcast.,6,280,68,1016
482
+ 20190501,00:00,06:00,16,16,Partly cloudy.,9,320,63,1015
483
+ 20190501,06:00,12:00,19,16,Broken clouds.,11,310,57,1016
484
+ 20190501,12:00,18:00,19,18,Partly sunny.,21,300,56,1015
485
+ 20190501,18:00,00:00,17,16,Passing clouds.,18,320,71,1016
486
+ 20190502,00:00,06:00,16,14,Passing clouds.,8,340,80,1015
487
+ 20190502,06:00,12:00,19,16,Partly sunny.,12,350,71,1016
488
+ 20190502,12:00,18:00,19,18,Partly sunny.,23,290,66,1015
489
+ 20190502,18:00,00:00,17,16,Passing clouds.,11,320,77,1015
490
+ 20190503,00:00,06:00,16,16,Passing clouds.,6,270,78,1014
491
+ 20190503,06:00,12:00,18,15,Overcast.,6,30,77,1015
492
+ 20190503,12:00,18:00,19,18,Passing clouds.,15,300,65,1014
493
+ 20190503,18:00,00:00,17,16,Passing clouds.,6,280,79,1014
494
+ 20190504,00:00,06:00,16,16,Overcast.,4,280,76,1013
495
+ 20190504,06:00,12:00,19,16,Overcast.,8,310,68,1013
496
+ 20190504,12:00,18:00,19,18,Passing clouds.,17,300,64,1012
497
+ 20190504,18:00,00:00,17,15,Passing clouds.,10,300,75,1012
498
+ 20190505,00:00,06:00,16,15,Overcast.,5,260,72,1012
499
+ 20190505,06:00,12:00,18,16,Scattered clouds.,11,210,62,1013
500
+ 20190505,12:00,18:00,19,17,Scattered clouds.,18,260,61,1011
501
+ 20190505,18:00,00:00,17,16,Passing clouds.,9,320,73,1012
502
+ 20190506,00:00,06:00,16,14,Overcast.,5,170,83,1012
503
+ 20190506,06:00,12:00,18,15,Broken clouds.,13,170,85,1013
504
+ 20190506,12:00,18:00,20,17,Broken clouds.,17,270,68,1014
505
+ 20190506,18:00,00:00,18,16,Passing clouds.,16,320,72,1015
506
+ 20190507,00:00,06:00,16,15,Partly cloudy.,11,300,76,1016
507
+ 20190507,06:00,12:00,18,16,Broken clouds.,16,300,64,1019
508
+ 20190507,12:00,18:00,19,18,Broken clouds.,15,270,59,1019
509
+ 20190507,18:00,00:00,17,16,Passing clouds.,11,320,72,1018
510
+ 20190508,00:00,06:00,16,14,Passing clouds.,6,270,75,1017
511
+ 20190508,06:00,12:00,17,14,More clouds than sun.,8,190,86,1017
512
+ 20190508,12:00,18:00,18,17,Overcast.,19,310,71,1015
513
+ 20190508,18:00,00:00,17,16,Mostly cloudy.,11,320,76,1014
514
+ 20190509,00:00,06:00,16,15,Partly cloudy.,4,280,85,1012
515
+ 20190509,06:00,12:00,17,14,Mostly cloudy.,10,180,86,1011
516
+ 20190509,12:00,18:00,18,18,Partly sunny.,11,200,68,1009
517
+ 20190509,18:00,00:00,17,16,Partly cloudy.,9,220,75,1010
518
+ 20190510,00:00,06:00,15,14,Light rain. Fog.,8,90,90,1009
519
+ 20190510,06:00,12:00,18,15,Partly sunny.,17,150,81,1010
520
+ 20190510,12:00,18:00,19,18,Broken clouds.,13,200,72,1011
521
+ 20190510,18:00,00:00,17,16,Passing clouds.,5,220,74,1012
522
+ 20190511,00:00,06:00,17,17,Overcast.,4,210,77,1012
523
+ 20190511,06:00,12:00,17,17,Light rain. Fog.,4,20,80,1014
524
+ 20190511,12:00,18:00,21,18,Partly sunny.,16,300,69,1012
525
+ 20190511,18:00,00:00,18,16,Fog.,2,290,84,1013
526
+ 20190512,00:00,06:00,16,14,Passing clouds.,1,90,91,1013
527
+ 20190512,06:00,12:00,21,15,Fog.,8,220,78,1014
528
+ 20190512,12:00,18:00,20,18,Partly sunny.,14,260,69,1014
529
+ 20190512,18:00,00:00,18,17,Overcast.,6,230,74,1015
530
+ 20190513,00:00,06:00,17,17,Overcast.,5,170,78,1015
531
+ 20190513,06:00,12:00,18,17,Overcast.,7,250,74,1016
532
+ 20190513,12:00,18:00,20,18,More clouds than sun.,14,260,72,1016
533
+ 20190513,18:00,00:00,18,17,Overcast.,7,230,76,1016
534
+ 20190514,00:00,06:00,17,17,Overcast.,7,250,78,1016
535
+ 20190514,06:00,12:00,21,17,Overcast.,13,290,69,1016
536
+ 20190514,12:00,18:00,21,19,Scattered clouds.,20,290,64,1015
537
+ 20190514,18:00,00:00,18,17,Passing clouds.,11,320,75,1015
538
+ 20190515,00:00,06:00,17,17,Overcast.,6,270,77,1014
539
+ 20190515,06:00,12:00,18,17,Overcast.,6,220,74,1014
540
+ 20190515,12:00,18:00,19,18,Overcast.,16,260,70,1014
541
+ 20190515,18:00,00:00,17,17,Mostly cloudy.,8,260,70,1014
542
+ 20190516,00:00,06:00,17,15,Passing clouds.,5,280,76,1013
543
+ 20190516,06:00,12:00,18,16,Light rain. Fog.,27,170,82,1013
544
+ 20190516,12:00,18:00,20,18,Scattered clouds.,25,290,58,1015
545
+ 20190516,18:00,00:00,17,16,Passing clouds.,23,300,64,1016
546
+ 20190517,00:00,06:00,16,14,Partly cloudy.,15,300,68,1016
547
+ 20190517,06:00,12:00,19,16,Broken clouds.,10,280,64,1017
548
+ 20190517,12:00,18:00,19,18,Passing clouds.,21,280,56,1016
549
+ 20190517,18:00,00:00,17,14,Passing clouds.,7,310,66,1016
550
+ 20190518,00:00,06:00,14,11,Clear.,6,100,80,1014
551
+ 20190518,06:00,12:00,17,13,Partly sunny.,6,190,72,1015
552
+ 20190518,12:00,18:00,19,18,Partly sunny.,14,250,66,1015
553
+ 20190518,18:00,00:00,17,16,Passing clouds.,6,280,75,1014
554
+ 20190519,00:00,06:00,16,16,Overcast.,11,290,73,1013
555
+ 20190519,06:00,12:00,17,14,Broken clouds.,11,210,78,1013
556
+ 20190519,12:00,18:00,19,14,Broken clouds.,23,190,77,1013
557
+ 20190519,18:00,00:00,17,14,Passing clouds.,19,290,68,1013
558
+ 20190520,00:00,06:00,15,14,Passing clouds.,21,290,74,1012
559
+ 20190520,06:00,12:00,18,14,Broken clouds.,29,300,69,1013
560
+ 20190520,12:00,18:00,19,17,Broken clouds.,23,290,57,1015
561
+ 20190520,18:00,00:00,17,15,Passing clouds.,10,260,68,1016
562
+ 20190521,00:00,06:00,16,15,Passing clouds.,13,250,71,1015
563
+ 20190521,06:00,12:00,18,15,Broken clouds.,19,260,67,1015
564
+ 20190521,12:00,18:00,18,17,Broken clouds.,23,280,61,1013
565
+ 20190521,18:00,00:00,16,16,Light rain. Overcast.,26,270,68,1011
566
+ 20190522,00:00,06:00,15,14,Mostly cloudy.,24,270,72,1008
567
+ 20190522,06:00,12:00,17,14,Broken clouds.,24,260,66,1008
568
+ 20190522,12:00,18:00,18,15,Broken clouds.,23,270,63,1009
569
+ 20190522,18:00,00:00,16,14,Partly cloudy.,9,260,78,1010
570
+ 20190523,00:00,06:00,15,13,Partly cloudy.,10,190,83,1012
571
+ 20190523,06:00,12:00,17,15,Broken clouds.,17,230,71,1015
572
+ 20190523,12:00,18:00,18,17,Broken clouds.,13,210,63,1016
573
+ 20190523,18:00,00:00,17,14,Passing clouds.,8,280,72,1016
574
+ 20190524,00:00,06:00,15,12,Passing clouds.,4,0,81,1015
575
+ 20190524,06:00,12:00,19,13,Passing clouds.,10,190,69,1015
576
+ 20190524,12:00,18:00,19,18,Passing clouds.,22,310,61,1014
577
+ 20190524,18:00,00:00,17,15,Passing clouds.,12,320,73,1013
578
+ 20190525,00:00,06:00,16,13,Passing clouds.,4,120,85,1012
579
+ 20190525,06:00,12:00,18,14,Scattered clouds.,11,160,70,1013
580
+ 20190525,12:00,18:00,18,18,Partly sunny.,15,270,58,1012
581
+ 20190525,18:00,00:00,17,15,Passing clouds.,7,280,71,1012
582
+ 20190526,00:00,06:00,16,14,Mostly cloudy.,5,120,80,1012
583
+ 20190526,06:00,12:00,16,15,Mostly cloudy.,16,270,74,1014
584
+ 20190526,12:00,18:00,18,16,Partly sunny.,17,250,60,1016
585
+ 20190526,18:00,00:00,16,14,Mostly cloudy.,13,230,80,1016
586
+ 20190527,00:00,06:00,15,14,Mostly cloudy.,20,320,72,1015
587
+ 20190527,06:00,12:00,17,14,Passing clouds.,16,310,59,1017
588
+ 20190527,12:00,18:00,18,17,Passing clouds.,15,270,57,1017
589
+ 20190527,18:00,00:00,17,14,Passing clouds.,11,310,67,1016
590
+ 20190528,00:00,06:00,15,12,Passing clouds.,3,350,76,1014
591
+ 20190528,06:00,12:00,18,13,Scattered clouds.,11,200,69,1014
592
+ 20190528,12:00,18:00,18,18,Passing clouds.,17,240,65,1013
593
+ 20190528,18:00,00:00,16,14,Passing clouds.,8,210,78,1012
594
+ 20190529,00:00,06:00,15,14,Passing clouds.,6,190,84,1011
595
+ 20190529,06:00,12:00,19,16,Passing clouds.,9,210,72,1012
596
+ 20190529,12:00,18:00,19,17,Passing clouds.,15,270,69,1011
597
+ 20190529,18:00,00:00,17,16,Passing clouds.,8,160,79,1012
598
+ 20190530,00:00,06:00,16,16,Passing clouds.,6,280,83,1012
599
+ 20190530,06:00,12:00,19,16,Overcast.,12,280,75,1013
600
+ 20190530,12:00,18:00,19,17,Scattered clouds.,15,240,69,1012
601
+ 20190530,18:00,00:00,16,16,Overcast.,6,180,79,1013
602
+ 20190531,00:00,06:00,16,16,Overcast.,6,230,80,1012
603
+ 20190531,06:00,12:00,18,16,Overcast.,8,230,77,1013
604
+ 20190531,12:00,18:00,19,17,Overcast.,16,210,69,1012
605
+ 20190531,18:00,00:00,17,16,Overcast.,7,210,74,1012
606
+ 20190601,00:00,06:00,16,16,Overcast.,10,210,73,1011
607
+ 20190601,06:00,12:00,18,16,Overcast.,12,220,68,1012
608
+ 20190601,12:00,18:00,18,17,Scattered clouds.,14,210,66,1012
609
+ 20190601,18:00,00:00,17,16,Overcast.,11,210,71,1012
610
+ 20190602,00:00,06:00,16,16,Overcast.,11,210,72,1012
611
+ 20190602,06:00,12:00,18,16,Overcast.,12,230,67,1013
612
+ 20190602,12:00,18:00,19,18,Partly sunny.,16,280,63,1013
613
+ 20190602,18:00,00:00,18,17,Overcast.,13,300,70,1012
614
+ 20190603,00:00,06:00,17,16,Overcast.,9,280,76,1012
615
+ 20190603,06:00,12:00,18,16,Drizzle. More clouds than sun.,10,270,83,1013
616
+ 20190603,12:00,18:00,19,18,Overcast.,19,300,71,1013
617
+ 20190603,18:00,00:00,18,17,Overcast.,13,300,75,1013
618
+ 20190604,00:00,06:00,17,17,Mostly cloudy.,9,290,79,1013
619
+ 20190604,06:00,12:00,18,17,Overcast.,10,250,81,1014
620
+ 20190604,12:00,18:00,18,18,Overcast.,15,270,76,1013
621
+ 20190604,18:00,00:00,17,16,Overcast.,9,210,80,1013
622
+ 20190605,00:00,06:00,16,16,Low clouds.,4,230,88,1013
623
+ 20190605,06:00,12:00,18,16,Partly sunny.,8,210,84,1014
624
+ 20190605,12:00,18:00,18,17,Partly sunny.,12,200,79,1014
625
+ 20190605,18:00,00:00,17,16,Low clouds.,4,0,84,1014
626
+ 20190606,00:00,06:00,16,16,Low clouds.,2,200,88,1013
627
+ 20190606,06:00,12:00,18,16,Overcast.,11,210,84,1014
628
+ 20190606,12:00,18:00,18,18,Overcast.,13,230,76,1014
629
+ 20190606,18:00,00:00,17,17,Overcast.,8,170,82,1014
630
+ 20190607,00:00,06:00,17,16,Overcast.,4,230,87,1013
631
+ 20190607,06:00,12:00,18,17,Overcast.,10,220,79,1013
632
+ 20190607,12:00,18:00,19,18,Overcast.,11,260,75,1012
633
+ 20190607,18:00,00:00,17,17,Overcast.,7,210,77,1012
634
+ 20190608,00:00,06:00,17,16,Overcast.,10,190,80,1012
635
+ 20190608,06:00,12:00,18,16,Overcast.,13,210,77,1013
636
+ 20190608,12:00,18:00,19,18,Passing clouds.,15,210,70,1013
637
+ 20190608,18:00,00:00,17,16,Scattered clouds.,4,210,79,1014
638
+ 20190609,00:00,06:00,16,16,Overcast.,5,180,81,1014
639
+ 20190609,06:00,12:00,21,16,Passing clouds.,10,310,74,1015
640
+ 20190609,12:00,18:00,21,20,Passing clouds.,19,290,67,1014
641
+ 20190609,18:00,00:00,19,17,Passing clouds.,7,270,82,1015
642
+ 20190610,00:00,06:00,18,17,Clear.,6,340,87,1014
643
+ 20190610,06:00,12:00,23,17,Fog.,13,330,81,1015
644
+ 20190610,12:00,18:00,23,20,Partly sunny.,16,270,74,1014
645
+ 20190610,18:00,00:00,19,17,Mostly cloudy.,6,190,87,1015
646
+ 20190611,00:00,06:00,17,17,Fog.,1,190,91,1015
647
+ 20190611,06:00,12:00,21,17,Fog.,6,200,86,1016
648
+ 20190611,12:00,18:00,21,19,Partly sunny.,13,190,78,1015
649
+ 20190611,18:00,00:00,19,18,Broken clouds.,9,170,86,1015
650
+ 20190612,00:00,06:00,18,17,Passing clouds.,4,0,88,1014
651
+ 20190612,06:00,12:00,21,17,Scattered clouds.,8,200,81,1015
652
+ 20190612,12:00,18:00,21,20,Scattered clouds.,16,280,72,1014
653
+ 20190612,18:00,00:00,19,17,Overcast.,10,270,81,1014
654
+ 20190613,00:00,06:00,18,17,Overcast.,4,280,82,1013
655
+ 20190613,06:00,12:00,20,18,Overcast.,10,260,76,1014
656
+ 20190613,12:00,18:00,20,18,Partly sunny.,17,270,70,1014
657
+ 20190613,18:00,00:00,17,17,Passing clouds.,11,280,76,1014
658
+ 20190614,00:00,06:00,17,17,Overcast.,8,260,74,1014
659
+ 20190614,06:00,12:00,19,17,Overcast.,9,250,68,1015
660
+ 20190614,12:00,18:00,20,19,Scattered clouds.,17,240,63,1014
661
+ 20190614,18:00,00:00,18,17,Partly sunny.,7,250,73,1014
662
+ 20190615,00:00,06:00,17,17,Overcast.,8,160,75,1013
663
+ 20190615,06:00,12:00,20,17,Overcast.,11,210,71,1014
664
+ 20190615,12:00,18:00,21,18,Partly sunny.,16,260,67,1013
665
+ 20190615,18:00,00:00,18,17,Overcast.,8,230,77,1013
666
+ 20190616,00:00,06:00,18,17,Overcast.,11,320,78,1012
667
+ 20190616,06:00,12:00,19,17,Overcast.,9,270,78,1012
668
+ 20190616,12:00,18:00,19,18,Cloudy.,14,260,74,1012
669
+ 20190616,18:00,00:00,18,17,Overcast.,8,200,78,1012
670
+ 20190617,00:00,06:00,17,17,Overcast.,9,220,82,1011
671
+ 20190617,06:00,12:00,18,17,Overcast.,11,270,78,1013
672
+ 20190617,12:00,18:00,18,18,Overcast.,13,210,72,1013
673
+ 20190617,18:00,00:00,17,17,Overcast.,6,250,74,1013
674
+ 20190618,00:00,06:00,17,17,Overcast.,8,250,78,1013
675
+ 20190618,06:00,12:00,18,17,Overcast.,10,210,74,1015
676
+ 20190618,12:00,18:00,20,19,Passing clouds.,16,280,64,1014
677
+ 20190618,18:00,00:00,18,17,Passing clouds.,7,290,73,1015
678
+ 20190619,00:00,06:00,17,16,Passing clouds.,1,0,82,1015
679
+ 20190619,06:00,12:00,20,18,Overcast.,8,290,73,1015
680
+ 20190619,12:00,18:00,21,19,Overcast.,15,270,69,1015
681
+ 20190619,18:00,00:00,18,18,Overcast.,9,260,75,1015
682
+ 20190620,00:00,06:00,17,17,Overcast.,8,230,78,1014
683
+ 20190620,06:00,12:00,19,17,Overcast.,11,210,72,1015
684
+ 20190620,12:00,18:00,20,19,Overcast.,12,190,71,1014
685
+ 20190620,18:00,00:00,18,17,Overcast.,6,210,79,1013
686
+ 20190621,00:00,06:00,17,17,Passing clouds.,3,250,89,1013
687
+ 20190621,06:00,12:00,19,17,Light rain. Partly sunny.,13,210,85,1014
688
+ 20190621,12:00,18:00,21,18,Broken clouds.,15,240,74,1014
689
+ 20190621,18:00,00:00,18,17,Overcast.,10,230,75,1013
690
+ 20190622,00:00,06:00,17,17,Overcast.,8,230,75,1013
691
+ 20190622,06:00,12:00,21,18,Partly sunny.,8,210,66,1015
692
+ 20190622,12:00,18:00,21,21,Passing clouds.,18,270,60,1014
693
+ 20190622,18:00,00:00,20,19,Passing clouds.,12,320,73,1015
694
+ 20190623,00:00,06:00,19,19,Overcast.,11,340,74,1015
695
+ 20190623,06:00,12:00,21,19,Overcast.,14,310,74,1016
696
+ 20190623,12:00,18:00,21,19,Mostly cloudy.,22,280,73,1014
697
+ 20190623,18:00,00:00,19,18,Overcast.,11,280,79,1014
698
+ 20190624,00:00,06:00,18,17,Overcast.,8,310,84,1013
699
+ 20190624,06:00,12:00,20,18,Overcast.,10,270,76,1013
700
+ 20190624,12:00,18:00,20,18,Partly sunny.,16,290,75,1012
701
+ 20190624,18:00,00:00,18,17,Overcast.,8,280,79,1012
702
+ 20190625,00:00,06:00,17,17,Overcast.,8,280,82,1011
703
+ 20190625,06:00,12:00,19,17,Overcast.,9,250,75,1013
704
+ 20190625,12:00,18:00,20,18,Overcast.,15,280,68,1013
705
+ 20190625,18:00,00:00,18,17,Overcast.,12,290,74,1013
706
+ 20190626,00:00,06:00,17,17,Overcast.,4,270,76,1013
707
+ 20190626,06:00,12:00,20,17,Overcast.,7,210,70,1015
708
+ 20190626,12:00,18:00,21,19,Passing clouds.,17,280,61,1015
709
+ 20190626,18:00,00:00,19,17,Passing clouds.,9,270,73,1015
710
+ 20190627,00:00,06:00,18,17,Overcast.,4,350,75,1015
711
+ 20190627,06:00,12:00,21,17,Overcast.,7,250,73,1016
712
+ 20190627,12:00,18:00,21,20,Passing clouds.,15,250,64,1016
713
+ 20190627,18:00,00:00,19,18,Passing clouds.,7,200,75,1015
714
+ 20190628,00:00,06:00,18,17,Overcast.,5,210,80,1015
715
+ 20190628,06:00,12:00,21,18,Scattered clouds.,14,310,73,1016
716
+ 20190628,12:00,18:00,22,19,Scattered clouds.,15,300,68,1016
717
+ 20190628,18:00,00:00,19,18,Passing clouds.,9,270,79,1015
718
+ 20190629,00:00,06:00,18,18,Passing clouds.,8,0,84,1014
719
+ 20190629,06:00,12:00,23,18,Broken clouds.,12,320,76,1015
720
+ 20190629,12:00,18:00,21,20,Broken clouds.,19,330,75,1016
721
+ 20190629,18:00,00:00,20,19,Broken clouds.,13,340,79,1015
722
+ 20190630,00:00,06:00,19,19,Passing clouds.,13,330,86,1014
723
+ 20190630,06:00,12:00,25,19,Scattered clouds.,12,350,72,1016
724
+ 20190630,12:00,18:00,26,22,Passing clouds.,21,310,64,1015
725
+ 20190630,18:00,00:00,22,18,Passing clouds.,14,310,80,1015
726
+ 20190701,00:00,06:00,18,17,Passing clouds.,10,340,89,1014
727
+ 20190701,06:00,12:00,22,17,Passing clouds.,11,290,74,1015
728
+ 20190701,12:00,18:00,23,22,Passing clouds.,18,290,67,1014
729
+ 20190701,18:00,00:00,21,17,Passing clouds.,11,320,82,1013
730
+ 20190702,00:00,06:00,18,16,Passing clouds.,1,180,84,1013
731
+ 20190702,06:00,12:00,20,18,Passing clouds.,10,200,75,1014
732
+ 20190702,12:00,18:00,21,20,Scattered clouds.,15,200,70,1013
733
+ 20190702,18:00,00:00,19,17,Passing clouds.,7,210,81,1012
734
+ 20190703,00:00,06:00,18,17,Passing clouds.,13,150,82,1012
735
+ 20190703,06:00,12:00,20,17,Overcast.,15,150,74,1013
736
+ 20190703,12:00,18:00,21,19,Partly sunny.,15,220,67,1012
737
+ 20190703,18:00,00:00,18,18,Passing clouds.,6,190,74,1013
738
+ 20190704,00:00,06:00,18,18,Overcast.,6,130,74,1013
739
+ 20190704,06:00,12:00,21,18,Overcast.,11,210,71,1014
740
+ 20190704,12:00,18:00,21,20,Sunny.,14,210,63,1013
741
+ 20190704,18:00,00:00,19,17,Sunny.,6,300,75,1014
742
+ 20190705,00:00,06:00,18,18,Passing clouds.,6,230,77,1015
743
+ 20190705,06:00,12:00,21,18,Overcast.,12,210,68,1016
744
+ 20190705,12:00,18:00,21,20,Passing clouds.,16,270,64,1016
745
+ 20190705,18:00,00:00,19,18,Overcast.,7,260,77,1016
746
+ 20190706,00:00,06:00,18,18,Overcast.,8,210,80,1016
747
+ 20190706,06:00,12:00,19,18,Overcast.,10,210,77,1017
748
+ 20190706,12:00,18:00,21,19,Scattered clouds.,16,210,68,1016
749
+ 20190706,18:00,00:00,19,18,Overcast.,9,220,74,1015
750
+ 20190707,00:00,06:00,18,17,Overcast.,11,210,78,1015
751
+ 20190707,06:00,12:00,20,18,Overcast.,15,210,70,1016
752
+ 20190707,12:00,18:00,21,18,Partly sunny.,16,200,68,1015
753
+ 20190707,18:00,00:00,18,18,Overcast.,12,210,73,1015
754
+ 20190708,00:00,06:00,18,18,Overcast.,7,210,73,1015
755
+ 20190708,06:00,12:00,21,18,Overcast.,14,210,65,1016
756
+ 20190708,12:00,18:00,21,19,Partly sunny.,15,220,65,1016
757
+ 20190708,18:00,00:00,19,18,Overcast.,9,230,72,1016
758
+ 20190709,00:00,06:00,18,18,Overcast.,7,210,76,1016
759
+ 20190709,06:00,12:00,22,18,Passing clouds.,13,210,69,1017
760
+ 20190709,12:00,18:00,23,21,Passing clouds.,18,290,62,1016
761
+ 20190709,18:00,00:00,21,19,Passing clouds.,11,320,75,1016
762
+ 20190710,00:00,06:00,19,18,Passing clouds.,7,330,79,1016
763
+ 20190710,06:00,12:00,23,19,Passing clouds.,11,290,71,1018
764
+ 20190710,12:00,18:00,23,22,Passing clouds.,19,300,65,1016
765
+ 20190710,18:00,00:00,21,19,Passing clouds.,15,320,80,1016
766
+ 20190711,00:00,06:00,19,18,Low clouds.,9,310,83,1016
767
+ 20190711,06:00,12:00,22,19,Overcast.,14,310,78,1016
768
+ 20190711,12:00,18:00,22,21,Scattered clouds.,19,300,69,1014
769
+ 20190711,18:00,00:00,19,18,Passing clouds.,11,320,82,1013
770
+ 20190712,00:00,06:00,18,18,Low clouds.,5,300,85,1012
771
+ 20190712,06:00,12:00,22,18,Low clouds.,11,290,79,1012
772
+ 20190712,12:00,18:00,23,21,Scattered clouds.,14,300,71,1010
773
+ 20190712,18:00,00:00,20,18,Passing clouds.,6,280,82,1010
774
+ 20190713,00:00,06:00,19,19,Low clouds.,5,260,84,1010
775
+ 20190713,06:00,12:00,20,19,Overcast.,8,180,81,1012
776
+ 20190713,12:00,18:00,20,19,Partly sunny.,12,250,79,1012
777
+ 20190713,18:00,00:00,18,17,Low clouds.,8,170,85,1013
778
+ 20190714,00:00,06:00,18,17,Low clouds.,1,210,88,1014
779
+ 20190714,06:00,12:00,22,18,Scattered clouds.,9,0,78,1015
780
+ 20190714,12:00,18:00,22,19,Partly sunny.,14,260,75,1014
781
+ 20190714,18:00,00:00,19,18,Passing clouds.,7,280,83,1014
782
+ 20190715,00:00,06:00,19,18,Low clouds.,7,0,89,1013
783
+ 20190715,06:00,12:00,23,18,Fog.,10,320,81,1013
784
+ 20190715,12:00,18:00,23,22,Passing clouds.,13,300,70,1012
785
+ 20190715,18:00,00:00,22,18,Passing clouds.,6,300,82,1011
786
+ 20190716,00:00,06:00,19,18,Fog.,6,180,92,1010
787
+ 20190716,06:00,12:00,21,17,Fog.,10,170,86,1011
788
+ 20190716,12:00,18:00,21,19,Partly sunny.,14,210,78,1011
789
+ 20190716,18:00,00:00,18,17,Low clouds.,10,200,87,1011
790
+ 20190717,00:00,06:00,17,17,Low clouds.,14,180,89,1011
791
+ 20190717,06:00,12:00,21,17,Partly sunny.,19,190,82,1014
792
+ 20190717,12:00,18:00,21,19,Partly sunny.,15,200,76,1015
793
+ 20190717,18:00,00:00,19,18,Overcast.,7,180,80,1014
794
+ 20190718,00:00,06:00,18,18,Overcast.,4,200,84,1015
795
+ 20190718,06:00,12:00,22,18,Overcast.,12,280,76,1015
796
+ 20190718,12:00,18:00,23,20,Passing clouds.,17,280,68,1014
797
+ 20190718,18:00,00:00,19,18,Passing clouds.,12,290,79,1013
798
+ 20190719,00:00,06:00,18,18,Overcast.,9,270,78,1013
799
+ 20190719,06:00,12:00,21,18,Overcast.,13,260,72,1014
800
+ 20190719,12:00,18:00,21,19,Passing clouds.,16,270,68,1013
801
+ 20190719,18:00,00:00,19,18,Passing clouds.,9,260,75,1013
802
+ 20190720,00:00,06:00,19,19,Overcast.,10,310,74,1014
803
+ 20190720,06:00,12:00,22,19,Passing clouds.,14,290,66,1014
804
+ 20190720,12:00,18:00,23,21,Passing clouds.,25,300,62,1013
805
+ 20190720,18:00,00:00,21,19,Passing clouds.,19,320,78,1012
806
+ 20190721,00:00,06:00,20,19,Overcast.,12,320,78,1013
807
+ 20190721,06:00,12:00,23,19,Scattered clouds.,16,320,70,1013
808
+ 20190721,12:00,18:00,23,21,Scattered clouds.,21,300,67,1013
809
+ 20190721,18:00,00:00,21,19,Overcast.,11,290,78,1013
810
+ 20190722,00:00,06:00,19,19,Overcast.,8,280,81,1014
811
+ 20190722,06:00,12:00,23,19,Broken clouds.,11,290,78,1015
812
+ 20190722,12:00,18:00,24,22,Broken clouds.,16,270,68,1014
813
+ 20190722,18:00,00:00,21,21,Partly cloudy.,11,320,80,1014
814
+ 20190723,00:00,06:00,21,21,Partly cloudy.,8,320,84,1014
815
+ 20190723,06:00,12:00,25,22,Broken clouds.,16,320,76,1015
816
+ 20190723,12:00,18:00,26,24,Broken clouds.,17,290,60,1014
817
+ 20190723,18:00,00:00,24,22,Passing clouds.,12,320,67,1014
818
+ 20190724,00:00,06:00,22,22,Passing clouds.,9,320,86,1013
819
+ 20190724,06:00,12:00,27,22,Scattered clouds.,10,340,68,1014
820
+ 20190724,12:00,18:00,26,22,Broken clouds.,13,220,72,1014
821
+ 20190724,18:00,00:00,23,21,Passing clouds.,6,160,75,1014
822
+ 20190725,00:00,06:00,23,21,Passing clouds.,6,280,79,1013
823
+ 20190725,06:00,12:00,27,21,Broken clouds.,7,140,73,1014
824
+ 20190725,12:00,18:00,26,23,Broken clouds.,12,200,72,1013
825
+ 20190725,18:00,00:00,22,21,Passing clouds.,5,200,82,1014
826
+ 20190726,00:00,06:00,21,19,Passing clouds.,4,200,89,1014
827
+ 20190726,06:00,12:00,26,19,Passing clouds.,8,310,79,1016
828
+ 20190726,12:00,18:00,26,24,Passing clouds.,19,300,68,1015
829
+ 20190726,18:00,00:00,23,22,Clear.,13,320,78,1015
830
+ 20190727,00:00,06:00,22,21,Passing clouds.,7,310,89,1015
831
+ 20190727,06:00,12:00,24,21,Scattered clouds.,10,270,76,1015
832
+ 20190727,12:00,18:00,25,24,Scattered clouds.,18,300,68,1014
833
+ 20190727,18:00,00:00,23,21,Passing clouds.,11,310,82,1014
834
+ 20190728,00:00,06:00,21,20,Low clouds.,5,200,86,1014
835
+ 20190728,06:00,12:00,23,20,Broken clouds.,11,200,78,1015
836
+ 20190728,12:00,18:00,22,21,Partly sunny.,14,210,74,1014
837
+ 20190728,18:00,00:00,20,18,Passing clouds.,7,210,81,1014
838
+ 20190729,00:00,06:00,18,18,Low clouds.,4,210,87,1013
839
+ 20190729,06:00,12:00,22,18,Fog.,9,210,78,1014
840
+ 20190729,12:00,18:00,23,22,Scattered clouds.,15,270,67,1012
841
+ 20190729,18:00,00:00,22,20,Passing clouds.,11,310,79,1012
842
+ 20190730,00:00,06:00,19,18,Low clouds.,10,180,85,1012
843
+ 20190730,06:00,12:00,21,18,Fog.,13,210,80,1013
844
+ 20190730,12:00,18:00,21,21,Partly sunny.,15,210,70,1013
845
+ 20190730,18:00,00:00,20,18,Partly cloudy.,4,270,78,1013
846
+ 20190731,00:00,06:00,18,18,Partly cloudy.,7,170,85,1014
847
+ 20190731,06:00,12:00,22,19,Overcast.,8,190,79,1015
848
+ 20190731,12:00,18:00,23,22,Scattered clouds.,15,270,67,1015
849
+ 20190731,18:00,00:00,21,19,Passing clouds.,10,270,79,1015
850
+ 20190801,00:00,06:00,21,20,Overcast.,5,280,82,1015
851
+ 20190801,06:00,12:00,24,21,Overcast.,13,320,76,1016
852
+ 20190801,12:00,18:00,24,22,Scattered clouds.,23,300,71,1014
853
+ 20190801,18:00,00:00,21,19,Passing clouds.,12,320,83,1014
854
+ 20190802,00:00,06:00,20,19,Low clouds.,8,330,86,1014
855
+ 20190802,06:00,12:00,23,20,Scattered clouds.,15,300,79,1015
856
+ 20190802,12:00,18:00,23,23,Scattered clouds.,16,300,69,1013
857
+ 20190802,18:00,00:00,22,20,Passing clouds.,10,320,81,1013
858
+ 20190803,00:00,06:00,20,19,Low clouds.,5,280,86,1013
859
+ 20190803,06:00,12:00,23,19,Low clouds.,11,270,78,1013
860
+ 20190803,12:00,18:00,23,21,Partly sunny.,13,270,71,1012
861
+ 20190803,18:00,00:00,21,18,Fog.,6,220,85,1013
862
+ 20190804,00:00,06:00,19,17,Fog.,1,270,91,1013
863
+ 20190804,06:00,12:00,23,19,Partly sunny.,9,300,82,1014
864
+ 20190804,12:00,18:00,24,22,Partly sunny.,15,270,68,1013
865
+ 20190804,18:00,00:00,21,18,Passing clouds.,5,260,86,1014
866
+ 20190805,00:00,06:00,20,18,Low clouds.,8,310,86,1013
867
+ 20190805,06:00,12:00,24,19,Low clouds.,13,330,78,1014
868
+ 20190805,12:00,18:00,24,23,Scattered clouds.,19,310,69,1013
869
+ 20190805,18:00,00:00,22,18,Partly cloudy.,6,270,84,1013
870
+ 20190806,00:00,06:00,21,20,Passing clouds.,11,320,82,1012
871
+ 20190806,06:00,12:00,23,20,Broken clouds.,17,300,76,1013
872
+ 20190806,12:00,18:00,23,21,Broken clouds.,15,280,71,1012
873
+ 20190806,18:00,00:00,20,19,Passing clouds.,5,180,80,1014
874
+ 20190807,00:00,06:00,18,18,Passing clouds.,4,220,87,1013
875
+ 20190807,06:00,12:00,23,19,Overcast.,9,260,79,1014
876
+ 20190807,12:00,18:00,23,21,Scattered clouds.,15,270,69,1013
877
+ 20190807,18:00,00:00,20,19,Passing clouds.,4,250,79,1014
878
+ 20190808,00:00,06:00,19,19,Passing clouds.,7,340,79,1013
879
+ 20190808,06:00,12:00,23,19,Passing clouds.,8,250,74,1014
880
+ 20190808,12:00,18:00,23,22,Passing clouds.,17,300,67,1013
881
+ 20190808,18:00,00:00,21,19,Passing clouds.,10,300,80,1013
882
+ 20190809,00:00,06:00,19,18,Passing clouds.,6,320,88,1012
883
+ 20190809,06:00,12:00,21,18,Low clouds.,10,180,82,1014
884
+ 20190809,12:00,18:00,23,22,Passing clouds.,14,200,70,1013
885
+ 20190809,18:00,00:00,21,19,Passing clouds.,8,280,80,1012
886
+ 20190810,00:00,06:00,19,19,Overcast.,6,260,81,1012
887
+ 20190810,06:00,12:00,23,19,Passing clouds.,9,180,72,1014
888
+ 20190810,12:00,18:00,23,22,Sunny.,16,280,67,1013
889
+ 20190810,18:00,00:00,21,19,Passing clouds.,10,300,79,1014
890
+ 20190811,00:00,06:00,19,19,Overcast.,6,240,82,1014
891
+ 20190811,06:00,12:00,22,19,Overcast.,11,270,76,1015
892
+ 20190811,12:00,18:00,22,19,Passing clouds.,15,260,70,1014
893
+ 20190811,18:00,00:00,19,18,Passing clouds.,7,260,81,1014
894
+ 20190812,00:00,06:00,18,17,Low clouds.,5,210,87,1014
895
+ 20190812,06:00,12:00,21,17,Drizzle. Low clouds.,10,220,80,1016
896
+ 20190812,12:00,18:00,22,21,Passing clouds.,15,270,69,1014
897
+ 20190812,18:00,00:00,19,19,Passing clouds.,6,280,80,1014
898
+ 20190813,00:00,06:00,19,18,Low clouds.,7,260,83,1014
899
+ 20190813,06:00,12:00,23,19,Low clouds.,10,310,78,1015
900
+ 20190813,12:00,18:00,23,23,Passing clouds.,19,300,68,1014
901
+ 20190813,18:00,00:00,22,19,Passing clouds.,14,320,82,1014
902
+ 20190814,00:00,06:00,19,19,Fog.,9,20,87,1014
903
+ 20190814,06:00,12:00,23,19,Passing clouds.,13,310,80,1015
904
+ 20190814,12:00,18:00,23,23,Passing clouds.,21,310,69,1014
905
+ 20190814,18:00,00:00,22,19,Passing clouds.,17,320,83,1014
906
+ 20190815,00:00,06:00,19,18,Passing clouds.,11,330,84,1014
907
+ 20190815,06:00,12:00,22,18,Passing clouds.,14,310,78,1014
908
+ 20190815,12:00,18:00,23,22,Passing clouds.,20,320,68,1013
909
+ 20190815,18:00,00:00,21,18,Passing clouds.,12,320,82,1013
910
+ 20190816,00:00,06:00,18,17,Passing clouds.,3,220,88,1013
911
+ 20190816,06:00,12:00,21,17,Low clouds.,11,270,78,1014
912
+ 20190816,12:00,18:00,22,19,Passing clouds.,14,210,70,1013
913
+ 20190816,18:00,00:00,19,18,Overcast.,5,210,78,1013
914
+ 20190817,00:00,06:00,18,18,Overcast.,4,150,78,1013
915
+ 20190817,06:00,12:00,21,18,Overcast.,9,210,72,1013
916
+ 20190817,12:00,18:00,22,21,Scattered clouds.,14,210,65,1012
917
+ 20190817,18:00,00:00,20,18,Partly cloudy.,6,220,76,1012
918
+ 20190818,00:00,06:00,18,18,Overcast.,5,220,77,1012
919
+ 20190818,06:00,12:00,22,18,Overcast.,10,210,69,1013
920
+ 20190818,12:00,18:00,23,21,Passing clouds.,15,280,62,1012
921
+ 20190818,18:00,00:00,21,19,Passing clouds.,6,270,76,1013
922
+ 20190819,00:00,06:00,19,19,Overcast.,9,270,77,1013
923
+ 20190819,06:00,12:00,24,19,Passing clouds.,11,320,69,1014
924
+ 20190819,12:00,18:00,24,22,Passing clouds.,24,310,62,1013
925
+ 20190819,18:00,00:00,21,20,Passing clouds.,19,320,81,1013
926
+ 20190820,00:00,06:00,20,19,Passing clouds.,9,340,82,1013
927
+ 20190820,06:00,12:00,23,20,Passing clouds.,15,340,76,1014
928
+ 20190820,12:00,18:00,24,23,Passing clouds.,22,300,68,1012
929
+ 20190820,18:00,00:00,22,20,Passing clouds.,15,320,83,1012
930
+ 20190821,00:00,06:00,20,19,Passing clouds.,8,310,88,1011
931
+ 20190821,06:00,12:00,23,19,Passing clouds.,7,280,79,1011
932
+ 20190821,12:00,18:00,24,23,Passing clouds.,15,280,70,1009
933
+ 20190821,18:00,00:00,22,19,Passing clouds.,8,310,86,1008
934
+ 20190822,00:00,06:00,19,18,Fog.,9,160,89,1008
935
+ 20190822,06:00,12:00,21,18,Drizzle. Fog.,16,190,85,1009
936
+ 20190822,12:00,18:00,22,20,Partly sunny.,17,180,71,1009
937
+ 20190822,18:00,00:00,19,19,Passing clouds.,12,170,81,1009
938
+ 20190823,00:00,06:00,19,18,Overcast.,11,180,80,1010
939
+ 20190823,06:00,12:00,22,19,Passing clouds.,16,180,70,1012
940
+ 20190823,12:00,18:00,22,22,Passing clouds.,14,210,69,1010
941
+ 20190823,18:00,00:00,22,19,Passing clouds.,5,200,80,1011
942
+ 20190824,00:00,06:00,20,19,Overcast.,2,0,83,1012
943
+ 20190824,06:00,12:00,24,19,Passing clouds.,8,330,75,1013
944
+ 20190824,12:00,18:00,23,22,Passing clouds.,15,250,70,1013
945
+ 20190824,18:00,00:00,22,21,Passing clouds.,8,270,80,1014
946
+ 20190825,00:00,06:00,21,21,Clear.,8,10,84,1014
947
+ 20190825,06:00,12:00,28,21,Scattered clouds.,9,0,66,1014
948
+ 20190825,12:00,18:00,28,25,Scattered clouds.,14,300,60,1013
949
+ 20190825,18:00,00:00,24,23,Passing clouds.,12,340,73,1013
950
+ 20190826,00:00,06:00,23,22,Clear.,9,340,82,1011
951
+ 20190826,06:00,12:00,28,22,Scattered clouds.,8,0,68,1012
952
+ 20190826,12:00,18:00,27,24,Passing clouds.,15,300,60,1010
953
+ 20190826,18:00,00:00,23,21,Passing clouds.,6,270,84,1010
954
+ 20190827,00:00,06:00,21,21,Overcast.,3,170,87,1010
955
+ 20190827,06:00,12:00,25,21,Passing clouds.,9,150,76,1011
956
+ 20190827,12:00,18:00,24,23,Passing clouds.,13,260,70,1010
957
+ 20190827,18:00,00:00,22,20,Passing clouds.,7,220,78,1011
958
+ 20190828,00:00,06:00,20,20,Passing clouds.,5,190,82,1012
959
+ 20190828,06:00,12:00,22,20,Overcast.,10,190,76,1015
960
+ 20190828,12:00,18:00,23,22,Passing clouds.,14,210,67,1014
961
+ 20190828,18:00,00:00,21,21,Passing clouds.,10,320,78,1013
962
+ 20190829,00:00,06:00,21,19,Passing clouds.,3,290,83,1014
963
+ 20190829,06:00,12:00,25,21,Partly sunny.,11,350,76,1015
964
+ 20190829,12:00,18:00,26,23,Passing clouds.,21,310,68,1014
965
+ 20190829,18:00,00:00,23,21,Passing clouds.,8,320,81,1013
966
+ 20190830,00:00,06:00,22,21,Passing clouds.,3,320,88,1013
967
+ 20190830,06:00,12:00,24,21,Passing clouds.,7,170,82,1014
968
+ 20190830,12:00,18:00,26,24,Passing clouds.,13,300,68,1013
969
+ 20190830,18:00,00:00,23,21,Passing clouds.,9,310,82,1013
970
+ 20190831,00:00,06:00,21,20,Low clouds.,3,220,86,1013
971
+ 20190831,06:00,12:00,25,20,Passing clouds.,12,310,78,1013
972
+ 20190831,12:00,18:00,26,23,Scattered clouds.,18,290,70,1011
973
+ 20190831,18:00,00:00,22,21,Passing clouds.,7,260,83,1011
974
+ 20190901,00:00,06:00,22,21,Low clouds.,4,330,84,1011
975
+ 20190901,06:00,12:00,25,21,Low clouds.,9,170,80,1012
976
+ 20190901,12:00,18:00,24,22,Partly sunny.,15,260,76,1011
977
+ 20190901,18:00,00:00,22,20,Passing clouds.,6,160,86,1012
978
+ 20190902,00:00,06:00,20,19,Fog.,5,170,92,1013
979
+ 20190902,06:00,12:00,27,19,Sunny.,5,190,85,1014
980
+ 20190902,12:00,18:00,28,24,Sunny.,9,190,60,1013
981
+ 20190902,18:00,00:00,24,23,Clear.,6,230,84,1013
982
+ 20190903,00:00,06:00,23,23,Passing clouds.,6,310,86,1013
983
+ 20190903,06:00,12:00,27,23,Scattered clouds.,9,330,76,1013
984
+ 20190903,12:00,18:00,29,25,Scattered clouds.,15,320,62,1011
985
+ 20190903,18:00,00:00,24,23,Passing clouds.,14,310,73,1011
986
+ 20190904,00:00,06:00,23,23,Passing clouds.,9,330,87,1010
987
+ 20190904,06:00,12:00,27,23,Scattered clouds.,11,290,79,1011
988
+ 20190904,12:00,18:00,28,24,Thunderstorms. Partly sunny.,20,290,62,1010
989
+ 20190904,18:00,00:00,24,23,Passing clouds.,11,310,80,1010
990
+ 20190905,00:00,06:00,23,22,Passing clouds.,5,310,87,1011
991
+ 20190905,06:00,12:00,27,23,Broken clouds.,6,0,80,1013
992
+ 20190905,12:00,18:00,27,24,Scattered clouds.,12,240,67,1014
993
+ 20190905,18:00,00:00,23,22,Passing clouds.,9,190,84,1015
994
+ 20190906,00:00,06:00,22,21,Passing clouds.,3,170,90,1015
995
+ 20190906,06:00,12:00,27,21,Scattered clouds.,7,0,76,1016
996
+ 20190906,12:00,18:00,28,26,Passing clouds.,16,320,60,1015
997
+ 20190906,18:00,00:00,25,23,Passing clouds.,11,310,80,1015
998
+ 20190907,00:00,06:00,23,22,Passing clouds.,3,320,88,1014
999
+ 20190907,06:00,12:00,26,22,Passing clouds.,6,180,82,1014
1000
+ 20190907,12:00,18:00,27,24,Passing clouds.,15,290,66,1013
1001
+ 20190907,18:00,00:00,23,21,Clear.,10,270,78,1013
1002
+ 20190908,00:00,06:00,21,19,Passing clouds.,7,250,78,1013
1003
+ 20190908,06:00,12:00,22,19,Partly sunny.,12,190,66,1013
1004
+ 20190908,12:00,18:00,23,22,Scattered clouds.,12,190,66,1012
1005
+ 20190908,18:00,00:00,21,19,Passing clouds.,5,310,78,1011
1006
+ 20190909,00:00,06:00,20,19,Overcast.,9,180,79,1010
1007
+ 20190909,06:00,12:00,22,19,Partly sunny.,20,190,70,1012
1008
+ 20190909,12:00,18:00,23,21,Scattered clouds.,16,200,66,1011
1009
+ 20190909,18:00,00:00,21,20,Passing clouds.,10,210,72,1010
1010
+ 20190910,00:00,06:00,20,19,Passing clouds.,19,150,71,1011
1011
+ 20190910,06:00,12:00,22,20,Partly sunny.,19,180,65,1013
1012
+ 20190910,12:00,18:00,23,21,Scattered clouds.,16,220,62,1012
1013
+ 20190910,18:00,00:00,20,19,Passing clouds.,8,180,73,1012
1014
+ 20190911,00:00,06:00,20,19,Passing clouds.,9,150,67,1013
1015
+ 20190911,06:00,12:00,23,19,Broken clouds.,11,160,61,1016
1016
+ 20190911,12:00,18:00,24,22,Passing clouds.,19,300,62,1014
1017
+ 20190911,18:00,00:00,21,20,Passing clouds.,10,310,76,1014
1018
+ 20190912,00:00,06:00,19,18,Passing clouds.,0,0,84,1014
1019
+ 20190912,06:00,12:00,24,19,Passing clouds.,8,300,77,1015
1020
+ 20190912,12:00,18:00,24,23,Passing clouds.,20,300,70,1014
1021
+ 20190912,18:00,00:00,21,21,Passing clouds.,16,340,84,1013
1022
+ 20190913,00:00,06:00,21,20,Fog.,10,0,90,1013
1023
+ 20190913,06:00,12:00,25,20,Fog.,9,310,83,1014
1024
+ 20190913,12:00,18:00,26,25,Passing clouds.,14,300,65,1012
1025
+ 20190913,18:00,00:00,24,21,Passing clouds.,7,310,80,1012
1026
+ 20190914,00:00,06:00,21,19,Clear.,3,300,88,1012
1027
+ 20190914,06:00,12:00,28,19,Passing clouds.,6,10,71,1013
1028
+ 20190914,12:00,18:00,28,27,Passing clouds.,15,300,49,1011
1029
+ 20190914,18:00,00:00,26,23,Passing clouds.,8,340,58,1011
1030
+ 20190915,00:00,06:00,21,19,Clear.,2,10,86,1011
1031
+ 20190915,06:00,12:00,30,19,Partly sunny.,6,0,71,1012
1032
+ 20190915,12:00,18:00,27,23,Partly sunny.,16,320,63,1011
1033
+ 20190915,18:00,00:00,22,21,Clear.,7,260,84,1011
1034
+ 20190916,00:00,06:00,21,20,Passing clouds.,2,280,87,1012
1035
+ 20190916,06:00,12:00,24,19,Scattered clouds.,5,280,80,1013
1036
+ 20190916,12:00,18:00,24,23,Passing clouds.,14,280,67,1012
1037
+ 20190916,18:00,00:00,21,20,Passing clouds.,4,280,82,1012
1038
+ 20190917,00:00,06:00,21,19,Passing clouds.,6,260,83,1013
1039
+ 20190917,06:00,12:00,23,19,Passing clouds.,8,220,73,1015
1040
+ 20190917,12:00,18:00,24,22,Passing clouds.,15,300,68,1013
1041
+ 20190917,18:00,00:00,21,19,Passing clouds.,5,260,78,1013
1042
+ 20190918,00:00,06:00,19,17,Passing clouds.,0,0,87,1012
1043
+ 20190918,06:00,12:00,22,19,Passing clouds.,7,210,76,1014
1044
+ 20190918,12:00,18:00,23,22,Passing clouds.,12,260,68,1012
1045
+ 20190918,18:00,00:00,20,18,Passing clouds.,8,180,81,1012
1046
+ 20190919,00:00,06:00,18,18,Passing clouds.,12,150,84,1012
1047
+ 20190919,06:00,12:00,22,18,Passing clouds.,12,120,70,1012
1048
+ 20190919,12:00,18:00,23,20,Scattered clouds.,15,260,68,1011
1049
+ 20190919,18:00,00:00,21,18,Passing clouds.,5,170,70,1011
1050
+ 20190920,00:00,06:00,17,17,Passing clouds.,7,140,73,1011
1051
+ 20190920,06:00,12:00,22,16,Passing clouds.,10,90,68,1012
1052
+ 20190920,12:00,18:00,23,22,Passing clouds.,16,280,66,1011
1053
+ 20190920,18:00,00:00,21,19,Passing clouds.,6,320,77,1011
1054
+ 20190921,00:00,06:00,19,17,Clear.,0,0,88,1012
1055
+ 20190921,06:00,12:00,23,17,Passing clouds.,6,290,78,1012
1056
+ 20190921,12:00,18:00,24,22,Passing clouds.,15,290,67,1010
1057
+ 20190921,18:00,00:00,22,21,Passing clouds.,9,280,78,1011
1058
+ 20190922,00:00,06:00,20,18,Clear.,3,340,88,1010
1059
+ 20190922,06:00,12:00,24,19,Fog.,6,120,81,1012
1060
+ 20190922,12:00,18:00,23,22,Partly sunny.,13,200,78,1011
1061
+ 20190922,18:00,00:00,22,20,Fog.,3,270,82,1012
1062
+ 20190923,00:00,06:00,20,19,Passing clouds.,2,280,89,1012
1063
+ 20190923,06:00,12:00,22,19,Partly sunny.,9,190,78,1014
1064
+ 20190923,12:00,18:00,23,21,Passing clouds.,16,210,69,1013
1065
+ 20190923,18:00,00:00,20,18,Passing clouds.,4,240,81,1013
1066
+ 20190924,00:00,06:00,18,18,Passing clouds.,5,350,83,1013
1067
+ 20190924,06:00,12:00,24,17,Passing clouds.,14,0,74,1013
1068
+ 20190924,12:00,18:00,24,23,Scattered clouds.,23,310,67,1009
1069
+ 20190924,18:00,00:00,22,20,Passing clouds.,10,310,84,1010
1070
+ 20190925,00:00,06:00,20,19,Passing clouds.,10,160,91,1009
1071
+ 20190925,06:00,12:00,23,20,Overcast.,15,190,80,1010
1072
+ 20190925,12:00,18:00,24,22,Broken clouds.,18,180,73,1009
1073
+ 20190925,18:00,00:00,21,21,Partly cloudy.,14,180,83,1012
1074
+ 20190926,00:00,06:00,21,21,Partly cloudy.,20,170,84,1013
1075
+ 20190926,06:00,12:00,23,21,Broken clouds.,16,150,79,1016
1076
+ 20190926,12:00,18:00,23,22,Broken clouds.,13,200,75,1014
1077
+ 20190926,18:00,00:00,21,21,Passing clouds.,2,240,77,1015
1078
+ 20190927,00:00,06:00,21,21,Mostly cloudy.,7,300,79,1014
1079
+ 20190927,06:00,12:00,23,21,Mostly cloudy.,13,310,76,1014
1080
+ 20190927,12:00,18:00,23,21,Broken clouds.,15,290,66,1012
1081
+ 20190927,18:00,00:00,21,20,Partly cloudy.,10,320,74,1010
1082
+ 20190928,00:00,06:00,19,19,Light rain. Overcast.,4,30,87,1010
1083
+ 20190928,06:00,12:00,22,19,Partly sunny.,12,240,76,1010
1084
+ 20190928,12:00,18:00,22,20,Partly sunny.,14,270,69,1009
1085
+ 20190928,18:00,00:00,20,18,Passing clouds.,16,260,69,1010
1086
+ 20190929,00:00,06:00,18,17,Clear.,12,250,67,1011
1087
+ 20190929,06:00,12:00,20,17,Partly sunny.,8,200,58,1012
1088
+ 20190929,12:00,18:00,21,20,Passing clouds.,15,210,54,1011
1089
+ 20190929,18:00,00:00,18,18,Passing clouds.,6,300,64,1011
1090
+ 20190930,00:00,06:00,17,14,Clear.,3,100,72,1012
1091
+ 20190930,06:00,12:00,21,14,Passing clouds.,6,110,60,1012
1092
+ 20190930,12:00,18:00,22,21,Sunny.,18,300,52,1011
1093
+ 20190930,18:00,00:00,19,18,Passing clouds.,12,310,65,1010
1094
+ 20191001,00:00,06:00,18,14,Passing clouds.,8,110,77,1010
1095
+ 20191001,06:00,12:00,21,15,Passing clouds.,11,110,66,1012
1096
+ 20191001,12:00,18:00,21,20,Passing clouds.,14,210,56,1011
1097
+ 20191001,18:00,00:00,19,16,Clear.,3,280,65,1012
1098
+ 20191002,00:00,06:00,17,13,Clear.,2,80,74,1013
1099
+ 20191002,06:00,12:00,22,12,Sunny.,10,90,62,1014
1100
+ 20191002,12:00,18:00,22,21,Sunny.,18,290,60,1012
1101
+ 20191002,18:00,00:00,20,18,Clear.,10,320,70,1013
1102
+ 20191003,00:00,06:00,17,14,Clear.,1,100,82,1013
1103
+ 20191003,06:00,12:00,22,13,Sunny.,7,170,73,1014
1104
+ 20191003,12:00,18:00,23,20,Sunny.,15,290,60,1013
1105
+ 20191003,18:00,00:00,19,16,Clear.,2,260,72,1014
1106
+ 20191004,00:00,06:00,16,14,Clear.,6,90,84,1015
1107
+ 20191004,06:00,12:00,22,13,Sunny.,7,90,64,1016
1108
+ 20191004,12:00,18:00,23,21,Sunny.,16,310,58,1015
1109
+ 20191004,18:00,00:00,20,16,Clear.,10,340,69,1015
1110
+ 20191005,00:00,06:00,16,14,Clear.,2,330,82,1016
1111
+ 20191005,06:00,12:00,23,13,Passing clouds.,3,200,70,1017
1112
+ 20191005,12:00,18:00,24,21,Sunny.,15,300,59,1015
1113
+ 20191005,18:00,00:00,20,18,Clear.,10,350,76,1015
1114
+ 20191006,00:00,06:00,18,14,Clear.,4,10,87,1015
1115
+ 20191006,06:00,12:00,26,14,Passing clouds.,5,0,65,1016
1116
+ 20191006,12:00,18:00,24,22,Sunny.,16,310,53,1014
1117
+ 20191006,18:00,00:00,21,18,Clear.,9,340,78,1015
1118
+ 20191007,00:00,06:00,18,15,Clear.,6,340,87,1014
1119
+ 20191007,06:00,12:00,26,16,Passing clouds.,7,330,64,1014
1120
+ 20191007,12:00,18:00,24,22,Passing clouds.,18,320,66,1012
1121
+ 20191007,18:00,00:00,22,19,Passing clouds.,7,340,75,1012
1122
+ 20191008,00:00,06:00,19,17,Fog.,6,350,89,1011
1123
+ 20191008,06:00,12:00,22,17,Fog.,8,290,81,1012
1124
+ 20191008,12:00,18:00,24,21,Passing clouds.,12,300,67,1010
1125
+ 20191008,18:00,00:00,20,18,Passing clouds.,4,290,86,1011
1126
+ 20191009,00:00,06:00,19,17,Passing clouds.,2,190,82,1011
1127
+ 20191009,06:00,12:00,21,17,Passing clouds.,11,170,74,1012
1128
+ 20191009,12:00,18:00,21,18,Partly sunny.,14,240,67,1010
1129
+ 20191009,18:00,00:00,18,18,Overcast.,6,230,71,1011
1130
+ 20191010,00:00,06:00,18,18,Passing clouds.,3,170,66,1011
1131
+ 20191010,06:00,12:00,19,18,Passing clouds.,11,190,62,1013
1132
+ 20191010,12:00,18:00,21,20,Sunny.,13,270,59,1011
1133
+ 20191010,18:00,00:00,19,18,Clear.,6,300,73,1012
1134
+ 20191011,00:00,06:00,17,15,Clear.,5,0,81,1012
1135
+ 20191011,06:00,12:00,27,15,Sunny.,6,350,35,1013
1136
+ 20191011,12:00,18:00,27,21,Sunny.,13,270,37,1011
1137
+ 20191011,18:00,00:00,20,17,Clear.,4,190,87,1012
1138
+ 20191012,00:00,06:00,17,14,Clear.,6,10,66,1011
1139
+ 20191012,06:00,12:00,23,17,Passing clouds.,7,320,40,1011
1140
+ 20191012,12:00,18:00,23,21,Passing clouds.,12,270,58,1011
1141
+ 20191012,18:00,00:00,19,18,Passing clouds.,9,320,82,1011
1142
+ 20191013,00:00,06:00,18,17,Overcast.,1,0,86,1010
1143
+ 20191013,06:00,12:00,22,18,Scattered clouds.,10,140,72,1012
1144
+ 20191013,12:00,18:00,22,19,Partly sunny.,15,260,64,1011
1145
+ 20191013,18:00,00:00,19,18,Passing clouds.,10,220,68,1012
1146
+ 20191014,00:00,06:00,18,18,Passing clouds.,8,230,65,1012
1147
+ 20191014,06:00,12:00,21,18,Sunny.,8,80,59,1014
1148
+ 20191014,12:00,18:00,22,19,Sunny.,18,310,56,1013
1149
+ 20191014,18:00,00:00,19,18,Clear.,11,340,75,1014
1150
+ 20191015,00:00,06:00,18,14,Passing clouds.,4,30,83,1014
1151
+ 20191015,06:00,12:00,22,15,Passing clouds.,13,310,74,1016
1152
+ 20191015,12:00,18:00,23,21,Passing clouds.,22,320,67,1013
1153
+ 20191015,18:00,00:00,20,18,Passing clouds.,2,310,85,1014
1154
+ 20191016,00:00,06:00,18,16,Passing clouds.,5,340,89,1013
1155
+ 20191016,06:00,12:00,22,16,Scattered clouds.,4,260,79,1013
1156
+ 20191016,12:00,18:00,24,21,Scattered clouds.,10,260,70,1010
1157
+ 20191016,18:00,00:00,20,17,Fog.,3,270,88,1010
1158
+ 20191017,00:00,06:00,19,18,Passing clouds.,1,100,88,1009
1159
+ 20191017,06:00,12:00,21,18,Scattered clouds.,13,130,74,1010
1160
+ 20191017,12:00,18:00,21,19,Partly sunny.,16,210,70,1009
1161
+ 20191017,18:00,00:00,19,18,Passing clouds.,12,180,75,1010
1162
+ 20191018,00:00,06:00,18,16,Passing clouds.,6,170,77,1011
1163
+ 20191018,06:00,12:00,21,15,Passing clouds.,4,160,72,1013
1164
+ 20191018,12:00,18:00,22,21,Sunny.,22,320,61,1012
1165
+ 20191018,18:00,00:00,20,17,Clear.,5,330,75,1012
1166
+ 20191019,00:00,06:00,16,15,Clear.,3,100,85,1012
1167
+ 20191019,06:00,12:00,23,14,Passing clouds.,4,190,73,1013
1168
+ 20191019,12:00,18:00,24,20,Passing clouds.,13,290,63,1012
1169
+ 20191019,18:00,00:00,19,17,Fog.,3,280,86,1012
1170
+ 20191020,00:00,06:00,17,14,Passing clouds.,4,110,89,1011
1171
+ 20191020,06:00,12:00,22,14,Sunny.,3,210,70,1012
1172
+ 20191020,12:00,18:00,23,21,Sunny.,23,320,61,1010
1173
+ 20191020,18:00,00:00,21,17,Clear.,5,340,68,1012
1174
+ 20191021,00:00,06:00,17,14,Clear.,2,340,77,1013
1175
+ 20191021,06:00,12:00,30,15,Sunny.,3,310,44,1015
1176
+ 20191021,12:00,18:00,31,27,Sunny.,20,340,24,1014
1177
+ 20191021,18:00,00:00,26,20,Clear.,9,310,30,1016
1178
+ 20191022,00:00,06:00,19,16,Clear.,3,0,50,1017
1179
+ 20191022,06:00,12:00,31,17,Sunny.,4,340,32,1017
1180
+ 20191022,12:00,18:00,32,26,Sunny.,19,340,20,1014
1181
+ 20191022,18:00,00:00,25,18,Clear.,6,330,42,1014
1182
+ 20191023,00:00,06:00,19,16,Clear.,0,0,60,1013
1183
+ 20191023,06:00,12:00,23,16,Sunny.,5,170,49,1013
1184
+ 20191023,12:00,18:00,26,21,Sunny.,10,180,68,1010
1185
+ 20191023,18:00,00:00,20,17,Fog.,1,140,93,1011
1186
+ 20191024,00:00,06:00,19,16,Passing clouds.,1,30,90,1011
1187
+ 20191024,06:00,12:00,33,16,Sunny.,6,340,46,1013
1188
+ 20191024,12:00,18:00,34,28,Passing clouds.,15,320,20,1012
1189
+ 20191024,18:00,00:00,23,20,Clear.,8,130,54,1014
1190
+ 20191025,00:00,06:00,22,18,Clear.,8,350,31,1014
1191
+ 20191025,06:00,12:00,31,16,Passing clouds.,3,160,34,1015
1192
+ 20191025,12:00,18:00,31,27,Passing clouds.,19,340,19,1013
1193
+ 20191025,18:00,00:00,25,18,Clear.,3,340,33,1013
1194
+ 20191026,00:00,06:00,18,17,Clear.,1,320,47,1011
1195
+ 20191026,06:00,12:00,25,16,Sunny.,4,170,42,1010
1196
+ 20191026,12:00,18:00,22,19,Sunny.,13,190,75,1008
1197
+ 20191026,18:00,00:00,18,17,Clear.,14,190,87,1008
1198
+ 20191027,00:00,06:00,18,17,Passing clouds.,23,170,89,1008
1199
+ 20191027,06:00,12:00,19,17,Partly sunny.,19,130,78,1009
1200
+ 20191027,12:00,18:00,19,18,Partly sunny.,18,200,70,1009
1201
+ 20191027,18:00,00:00,18,16,Mostly cloudy.,10,230,67,1011
1202
+ 20191028,00:00,06:00,16,13,Clear.,4,0,75,1013
1203
+ 20191028,06:00,12:00,22,14,Passing clouds.,3,350,61,1015
1204
+ 20191028,12:00,18:00,23,20,Sunny.,12,260,30,1014
1205
+ 20191028,18:00,00:00,19,15,Clear.,2,0,55,1014
1206
+ 20191029,00:00,06:00,15,12,Clear.,4,100,53,1013
1207
+ 20191029,06:00,12:00,19,12,Sunny.,5,180,50,1013
1208
+ 20191029,12:00,18:00,21,18,Passing clouds.,13,230,63,1012
1209
+ 20191029,18:00,00:00,18,15,Passing clouds.,3,230,78,1014
1210
+ 20191030,00:00,06:00,15,13,Passing clouds.,4,80,82,1015
1211
+ 20191030,06:00,12:00,22,12,Partly sunny.,5,0,35,1018
1212
+ 20191030,12:00,18:00,23,23,Sunny.,15,270,15,1018
1213
+ 20191030,18:00,00:00,17,14,Passing clouds.,7,110,16,1020
1214
+ 20191031,00:00,06:00,13,9,Clear.,6,350,29,1019
1215
+ 20191031,06:00,12:00,23,11,Passing clouds.,11,350,22,1020
1216
+ 20191031,12:00,18:00,23,20,Passing clouds.,24,320,28,1017
1217
+ 20191031,18:00,00:00,19,13,Clear.,2,330,48,1018
1218
+ 20191101,00:00,06:00,14,11,Clear.,3,10,57,1018
1219
+ 20191101,06:00,12:00,23,10,Sunny.,6,350,26,1018
1220
+ 20191101,12:00,18:00,23,19,Sunny.,13,310,36,1017
1221
+ 20191101,18:00,00:00,18,14,Clear.,6,320,65,1018
1222
+ 20191102,00:00,06:00,13,12,Clear.,4,340,60,1017
1223
+ 20191102,06:00,12:00,26,11,Broken clouds.,7,350,32,1018
1224
+ 20191102,12:00,18:00,26,19,Passing clouds.,12,330,35,1015
1225
+ 20191102,18:00,00:00,17,14,Fog.,1,350,86,1016
1226
+ 20191103,00:00,06:00,14,11,Clear.,2,350,72,1015
1227
+ 20191103,06:00,12:00,23,13,Sunny.,4,350,30,1015
1228
+ 20191103,12:00,18:00,23,18,Sunny.,15,320,45,1013
1229
+ 20191103,18:00,00:00,18,13,Clear.,5,350,83,1014
1230
+ 20191104,00:00,06:00,14,12,Clear.,2,340,63,1014
1231
+ 20191104,06:00,12:00,22,16,Sunny.,8,310,36,1014
1232
+ 20191104,12:00,18:00,21,17,Passing clouds.,14,310,70,1013
1233
+ 20191104,18:00,00:00,17,14,Fog.,8,290,90,1015
1234
+ 20191105,00:00,06:00,15,12,Passing clouds.,5,320,89,1015
1235
+ 20191105,06:00,12:00,20,13,Passing clouds.,6,310,68,1016
1236
+ 20191105,12:00,18:00,21,17,Passing clouds.,14,320,74,1014
1237
+ 20191105,18:00,00:00,17,15,Passing clouds.,1,290,87,1015
1238
+ 20191106,00:00,06:00,16,14,Passing clouds.,2,110,88,1015
1239
+ 20191106,06:00,12:00,19,16,Passing clouds.,9,160,78,1016
1240
+ 20191106,12:00,18:00,19,17,Passing clouds.,10,260,73,1015
1241
+ 20191106,18:00,00:00,17,15,Passing clouds.,2,310,84,1016
1242
+ 20191107,00:00,06:00,16,16,Fog.,7,20,84,1017
1243
+ 20191107,06:00,12:00,18,16,Fog.,13,330,82,1018
1244
+ 20191107,12:00,18:00,20,17,Passing clouds.,19,310,75,1017
1245
+ 20191107,18:00,00:00,17,15,Fog.,4,310,89,1019
1246
+ 20191108,00:00,06:00,16,14,Fog.,7,350,92,1018
1247
+ 20191108,06:00,12:00,21,15,Fog.,14,340,77,1019
1248
+ 20191108,12:00,18:00,22,20,Passing clouds.,22,340,63,1016
1249
+ 20191108,18:00,00:00,19,17,Clear.,8,10,68,1017
1250
+ 20191109,00:00,06:00,15,14,Clear.,0,0,86,1015
1251
+ 20191109,06:00,12:00,29,14,Passing clouds.,5,180,36,1016
1252
+ 20191109,12:00,18:00,27,18,Passing clouds.,10,310,51,1014
1253
+ 20191109,18:00,00:00,18,17,Fog.,7,170,92,1016
1254
+ 20191110,00:00,06:00,17,16,Fog.,10,180,90,1016
1255
+ 20191110,06:00,12:00,18,17,Sunny.,9,200,76,1016
1256
+ 20191110,12:00,18:00,18,17,Sunny.,9,220,77,1014
1257
+ 20191110,18:00,00:00,17,16,Overcast.,5,180,79,1015
1258
+ 20191111,00:00,06:00,16,16,Overcast.,1,140,80,1015
1259
+ 20191111,06:00,12:00,18,16,Overcast.,8,270,72,1017
1260
+ 20191111,12:00,18:00,18,16,Sunny.,12,290,72,1016
1261
+ 20191111,18:00,00:00,16,15,Clear.,6,340,84,1017
1262
+ 20191112,00:00,06:00,16,14,Fog.,8,350,89,1017
1263
+ 20191112,06:00,12:00,20,14,Fog.,10,10,83,1018
1264
+ 20191112,12:00,18:00,20,17,Scattered clouds.,19,310,75,1015
1265
+ 20191112,18:00,00:00,17,17,Fog.,12,340,85,1016
1266
+ 20191113,00:00,06:00,16,15,Fog.,10,10,86,1015
1267
+ 20191113,06:00,12:00,19,16,Partly sunny.,8,300,76,1016
1268
+ 20191113,12:00,18:00,19,17,Partly sunny.,21,320,74,1015
1269
+ 20191113,18:00,00:00,17,14,Passing clouds.,7,10,82,1017
1270
+ 20191114,00:00,06:00,16,14,Passing clouds.,6,350,85,1017
1271
+ 20191114,06:00,12:00,19,16,Broken clouds.,11,0,72,1019
1272
+ 20191114,12:00,18:00,20,18,Scattered clouds.,22,320,71,1018
1273
+ 20191114,18:00,00:00,18,16,Passing clouds.,14,330,78,1020
1274
+ 20191115,00:00,06:00,17,16,Passing clouds.,6,40,82,1019
1275
+ 20191115,06:00,12:00,19,17,Partly sunny.,14,310,71,1019
1276
+ 20191115,12:00,18:00,20,17,Partly sunny.,19,290,69,1016
1277
+ 20191115,18:00,00:00,17,16,Passing clouds.,6,300,77,1016
1278
+ 20191116,00:00,06:00,16,14,Clear.,4,320,83,1015
1279
+ 20191116,06:00,12:00,20,13,Passing clouds.,11,320,76,1015
1280
+ 20191116,12:00,18:00,20,18,Passing clouds.,14,320,74,1014
1281
+ 20191116,18:00,00:00,17,15,Fog.,3,350,90,1015
1282
+ 20191117,00:00,06:00,14,13,Fog.,3,10,90,1014
1283
+ 20191117,06:00,12:00,29,14,Passing clouds.,2,10,49,1014
1284
+ 20191117,12:00,18:00,30,25,Passing clouds.,15,340,22,1012
1285
+ 20191117,18:00,00:00,24,17,Clear.,6,330,29,1013
1286
+ 20191118,00:00,06:00,18,16,Clear.,3,0,40,1012
1287
+ 20191118,06:00,12:00,31,19,Scattered clouds.,8,330,21,1011
1288
+ 20191118,12:00,18:00,31,18,Partly sunny.,10,320,38,1009
1289
+ 20191118,18:00,00:00,18,17,Passing clouds.,6,160,74,1010
1290
+ 20191119,00:00,06:00,17,16,Passing clouds.,4,130,63,1008
1291
+ 20191119,06:00,12:00,22,17,Broken clouds.,13,170,66,1008
1292
+ 20191119,12:00,18:00,20,18,Partly sunny.,17,200,83,1005
1293
+ 20191119,18:00,00:00,18,16,Overcast.,17,220,85,1003
1294
+ 20191120,00:00,06:00,16,15,Partly cloudy.,23,240,70,1003
1295
+ 20191120,06:00,12:00,17,14,Broken clouds.,23,220,70,1004
1296
+ 20191120,12:00,18:00,16,13,Partly sunny.,26,210,74,1004
1297
+ 20191120,18:00,00:00,15,13,Light rain. Partly cloudy.,16,230,82,1007
1298
+ 20191121,00:00,06:00,14,13,Light rain. Fog.,9,120,86,1009
1299
+ 20191121,06:00,12:00,18,14,Broken clouds.,14,180,78,1012
1300
+ 20191121,12:00,18:00,18,16,Scattered clouds.,14,190,69,1014
1301
+ 20191121,18:00,00:00,16,13,Passing clouds.,9,90,78,1017
1302
+ 20191122,00:00,06:00,14,11,Clear.,4,50,81,1019
1303
+ 20191122,06:00,12:00,19,13,Scattered clouds.,5,100,59,1020
1304
+ 20191122,12:00,18:00,20,17,Scattered clouds.,19,300,60,1018
1305
+ 20191122,18:00,00:00,17,14,Passing clouds.,5,0,77,1019
1306
+ 20191123,00:00,06:00,14,12,Clear.,2,0,75,1019
1307
+ 20191123,06:00,12:00,21,12,Broken clouds.,2,300,60,1020
1308
+ 20191123,12:00,18:00,21,17,Passing clouds.,18,330,52,1016
1309
+ 20191123,18:00,00:00,16,14,Passing clouds.,0,0,71,1018
1310
+ 20191124,00:00,06:00,15,11,Clear.,2,30,74,1018
1311
+ 20191124,06:00,12:00,22,12,Passing clouds.,6,340,50,1019
1312
+ 20191124,12:00,18:00,22,17,Passing clouds.,16,320,47,1015
1313
+ 20191124,18:00,00:00,16,12,Passing clouds.,1,90,83,1016
1314
+ 20191125,00:00,06:00,12,10,Clear.,3,140,72,1014
1315
+ 20191125,06:00,12:00,18,11,Partly sunny.,6,160,64,1014
1316
+ 20191125,12:00,18:00,18,16,Broken clouds.,15,200,75,1009
1317
+ 20191125,18:00,00:00,17,14,Passing clouds.,9,270,78,1010
1318
+ 20191126,00:00,06:00,13,11,Passing clouds.,5,80,82,1011
1319
+ 20191126,06:00,12:00,18,11,Passing clouds.,5,190,60,1013
1320
+ 20191126,12:00,18:00,19,15,Partly sunny.,17,320,51,1011
1321
+ 20191126,18:00,00:00,14,12,Passing clouds.,3,90,65,1010
1322
+ 20191127,00:00,06:00,14,12,Passing clouds.,5,120,56,1008
1323
+ 20191127,06:00,12:00,18,14,Broken clouds.,18,210,63,1006
1324
+ 20191127,12:00,18:00,17,11,Light rain. Fog.,20,310,82,1004
1325
+ 20191127,18:00,00:00,12,11,Passing clouds.,9,110,84,1005
1326
+ 20191128,00:00,06:00,12,11,Passing clouds.,13,120,80,1005
1327
+ 20191128,06:00,12:00,16,12,Broken clouds.,31,140,78,1003
1328
+ 20191128,12:00,18:00,12,11,Rain. Fog.,17,90,87,1002
1329
+ 20191128,18:00,00:00,13,11,Light rain. Partly cloudy.,21,280,76,1003
1330
+ 20191129,00:00,06:00,13,12,Partly cloudy.,26,280,59,1006
1331
+ 20191129,06:00,12:00,15,11,Broken clouds.,22,270,60,1012
1332
+ 20191129,12:00,18:00,15,12,Broken clouds.,19,280,60,1015
1333
+ 20191129,18:00,00:00,13,11,Passing clouds.,10,280,70,1018
1334
+ 20191130,00:00,06:00,10,9,Passing clouds.,7,90,84,1019
1335
+ 20191130,06:00,12:00,16,11,Scattered clouds.,7,90,65,1022
1336
+ 20191130,12:00,18:00,16,14,Partly sunny.,13,340,54,1019
1337
+ 20191130,18:00,00:00,14,12,Passing clouds.,6,0,65,1019
1338
+ 20191201,00:00,06:00,11,10,Clear.,4,120,69,1018
1339
+ 20191201,06:00,12:00,17,9,Partly sunny.,6,130,54,1020
1340
+ 20191201,12:00,18:00,17,14,Partly sunny.,9,270,61,1018
1341
+ 20191201,18:00,00:00,14,12,Passing clouds.,1,340,76,1019
1342
+ 20191202,00:00,06:00,11,11,Passing clouds.,9,90,80,1019
1343
+ 20191202,06:00,12:00,19,11,Partly sunny.,5,250,70,1020
1344
+ 20191202,12:00,18:00,19,16,Partly sunny.,11,320,65,1018
1345
+ 20191202,18:00,00:00,15,13,Passing clouds.,6,10,83,1019
1346
+ 20191203,00:00,06:00,13,12,Passing clouds.,0,0,86,1019
1347
+ 20191203,06:00,12:00,17,12,Overcast.,3,300,72,1018
1348
+ 20191203,12:00,18:00,18,17,Overcast.,11,170,71,1015
1349
+ 20191203,18:00,00:00,17,16,Light rain. Passing clouds.,9,280,83,1016
1350
+ 20191204,00:00,06:00,16,15,Light rain. Fog.,10,130,90,1014
1351
+ 20191204,06:00,12:00,17,15,Light rain. Fog.,11,210,91,1015
1352
+ 20191204,12:00,18:00,16,15,Light rain. More clouds than sun.,19,150,88,1014
1353
+ 20191204,18:00,00:00,16,14,Overcast.,6,90,91,1017
1354
+ 20191205,00:00,06:00,14,12,Fog.,0,0,92,1017
1355
+ 20191205,06:00,12:00,19,11,Partly sunny.,2,330,80,1020
1356
+ 20191205,12:00,18:00,19,16,Partly sunny.,15,320,73,1018
1357
+ 20191205,18:00,00:00,16,13,Passing clouds.,5,350,88,1019
1358
+ 20191206,00:00,06:00,14,12,Passing clouds.,2,20,87,1019
1359
+ 20191206,06:00,12:00,19,15,Partly sunny.,7,100,62,1020
1360
+ 20191206,12:00,18:00,18,17,Mostly cloudy.,12,190,76,1020
1361
+ 20191206,18:00,00:00,17,16,Passing clouds.,5,340,86,1020
1362
+ 20191207,00:00,06:00,17,16,Overcast.,5,350,87,1019
1363
+ 20191207,06:00,12:00,18,17,Light rain. Fog.,7,130,86,1021
1364
+ 20191207,12:00,18:00,18,17,Mostly cloudy.,6,130,86,1019
1365
+ 20191207,18:00,00:00,17,17,Passing clouds.,5,300,84,1019
1366
+ 20191208,00:00,06:00,17,16,Fog.,4,350,89,1018
1367
+ 20191208,06:00,12:00,17,16,Fog.,5,180,91,1018
1368
+ 20191208,12:00,18:00,17,16,Broken clouds.,11,280,86,1017
1369
+ 20191208,18:00,00:00,16,15,Passing clouds.,12,300,85,1017
1370
+ 20191209,00:00,06:00,15,12,Passing clouds.,9,300,86,1017
1371
+ 20191209,06:00,12:00,17,11,Scattered clouds.,6,300,82,1018
1372
+ 20191209,12:00,18:00,18,15,Passing clouds.,14,310,72,1018
1373
+ 20191209,18:00,00:00,14,12,Passing clouds.,3,320,87,1020
1374
+ 20191210,00:00,06:00,12,10,Passing clouds.,2,70,88,1021
1375
+ 20191210,06:00,12:00,19,12,Partly sunny.,5,80,61,1023
1376
+ 20191210,12:00,18:00,19,16,Partly sunny.,15,310,72,1022
1377
+ 20191210,18:00,00:00,15,13,Passing clouds.,7,330,87,1022
1378
+ 20191211,00:00,06:00,13,10,Passing clouds.,5,20,89,1022
1379
+ 20191211,06:00,12:00,17,10,Partly sunny.,10,320,77,1022
1380
+ 20191211,12:00,18:00,18,16,Partly sunny.,18,320,74,1021
1381
+ 20191211,18:00,00:00,16,13,Fog.,3,10,87,1022
1382
+ 20191212,00:00,06:00,13,11,Passing clouds.,2,350,88,1022
1383
+ 20191212,06:00,12:00,18,12,Partly sunny.,3,220,76,1023
1384
+ 20191212,12:00,18:00,19,16,Partly sunny.,11,310,72,1021
1385
+ 20191212,18:00,00:00,16,13,Fog.,2,340,90,1021
1386
+ 20191213,00:00,06:00,13,13,Fog.,2,60,90,1021
1387
+ 20191213,06:00,12:00,18,12,Passing clouds.,4,90,81,1020
1388
+ 20191213,12:00,18:00,18,15,Scattered clouds.,12,320,78,1018
1389
+ 20191213,18:00,00:00,14,14,Fog.,4,310,87,1017
1390
+ 20191214,00:00,06:00,14,14,Overcast.,6,90,86,1016
1391
+ 20191214,06:00,12:00,18,14,Partly sunny.,9,150,80,1016
1392
+ 20191214,12:00,18:00,18,17,Partly sunny.,14,280,76,1014
1393
+ 20191214,18:00,00:00,16,14,Passing clouds.,15,270,74,1014
1394
+ 20191215,00:00,06:00,16,14,Passing clouds.,10,280,73,1014
1395
+ 20191215,06:00,12:00,17,14,Passing clouds.,17,310,56,1017
1396
+ 20191215,12:00,18:00,17,15,Passing clouds.,21,320,49,1017
1397
+ 20191215,18:00,00:00,14,11,Clear.,6,90,66,1019
1398
+ 20191216,00:00,06:00,11,8,Clear.,1,140,70,1020
1399
+ 20191216,06:00,12:00,19,8,Scattered clouds.,3,340,43,1023
1400
+ 20191216,12:00,18:00,19,14,Passing clouds.,11,290,40,1022
1401
+ 20191216,18:00,00:00,14,11,Passing clouds.,3,90,38,1024
1402
+ 20191217,00:00,06:00,11,8,Passing clouds.,5,30,46,1024
1403
+ 20191217,06:00,12:00,17,7,Scattered clouds.,8,330,38,1024
1404
+ 20191217,12:00,18:00,18,14,Partly sunny.,14,310,38,1020
1405
+ 20191217,18:00,00:00,16,12,Partly cloudy.,12,100,40,1019
1406
+ 20191218,00:00,06:00,10,8,Passing clouds.,7,20,47,1018
1407
+ 20191218,06:00,12:00,17,8,Partly sunny.,7,340,34,1018
1408
+ 20191218,12:00,18:00,17,13,Partly sunny.,14,260,41,1016
1409
+ 20191218,18:00,00:00,12,8,Passing clouds.,3,90,66,1018
1410
+ 20191219,00:00,06:00,9,7,Passing clouds.,4,100,55,1018
1411
+ 20191219,06:00,12:00,17,6,Passing clouds.,5,300,46,1020
1412
+ 20191219,12:00,18:00,17,14,Passing clouds.,16,330,53,1019
1413
+ 20191219,18:00,00:00,13,10,Clear.,6,350,75,1021
1414
+ 20191220,00:00,06:00,10,7,Clear.,3,10,74,1022
1415
+ 20191220,06:00,12:00,19,8,Scattered clouds.,6,350,54,1023
1416
+ 20191220,12:00,18:00,22,17,Scattered clouds.,12,340,28,1020
1417
+ 20191220,18:00,00:00,15,11,Passing clouds.,5,100,59,1021
1418
+ 20191221,00:00,06:00,11,9,Clear.,2,10,78,1020
1419
+ 20191221,06:00,12:00,18,9,High level clouds.,4,0,47,1020
1420
+ 20191221,12:00,18:00,18,15,High level clouds.,5,200,44,1017
1421
+ 20191221,18:00,00:00,13,12,High level clouds.,2,290,69,1016
1422
+ 20191222,00:00,06:00,13,11,Clear.,4,170,62,1015
1423
+ 20191222,06:00,12:00,17,12,Partly sunny.,3,80,47,1015
1424
+ 20191222,12:00,18:00,17,14,More clouds than sun.,11,180,73,1013
1425
+ 20191222,18:00,00:00,16,11,Mostly cloudy.,9,110,64,1012
1426
+ 20191223,00:00,06:00,13,11,Clear.,8,110,69,1010
1427
+ 20191223,06:00,12:00,13,12,Rain. Fog.,17,100,87,1010
1428
+ 20191223,12:00,18:00,16,14,Broken clouds.,15,180,79,1009
1429
+ 20191223,18:00,00:00,14,13,Light rain. Overcast.,16,170,90,1010
1430
+ 20191224,00:00,06:00,13,12,Passing clouds.,1,110,90,1010
1431
+ 20191224,06:00,12:00,16,11,Broken clouds.,10,330,80,1012
1432
+ 20191224,12:00,18:00,16,14,Broken clouds.,21,300,64,1012
1433
+ 20191224,18:00,00:00,14,13,Passing clouds.,15,270,61,1014
1434
+ 20191225,00:00,06:00,13,12,Passing clouds.,13,280,64,1014
1435
+ 20191225,06:00,12:00,,,Not Available,,,,
1436
+ 20191225,12:00,18:00,15,12,Overcast.,12,270,66,1014
1437
+ 20191225,18:00,00:00,14,13,Clear.,27,130,71,1013
1438
+ 20191226,00:00,06:00,13,9,Heavy rain. Fog.,32,130,73,1009
1439
+ 20191226,06:00,12:00,14,8,Broken clouds.,19,80,75,1009
1440
+ 20191226,12:00,18:00,14,11,Broken clouds.,19,180,68,1008
1441
+ 20191226,18:00,00:00,11,10,Partly cloudy.,6,10,78,1011
1442
+ 20191227,00:00,06:00,9,7,Passing clouds.,5,10,81,1012
1443
+ 20191227,06:00,12:00,14,7,Scattered clouds.,5,100,71,1015
1444
+ 20191227,12:00,18:00,15,12,Scattered clouds.,6,210,64,1014
1445
+ 20191227,18:00,00:00,12,10,Passing clouds.,4,340,77,1016
1446
+ 20191228,00:00,06:00,9,7,Clear.,4,100,81,1018
1447
+ 20191228,06:00,12:00,15,7,Passing clouds.,5,90,70,1020
1448
+ 20191228,12:00,18:00,16,13,Passing clouds.,10,200,68,1018
1449
+ 20191228,18:00,00:00,13,10,Passing clouds.,4,90,80,1020
1450
+ 20191229,00:00,06:00,9,7,Clear.,3,130,80,1021
1451
+ 20191229,06:00,12:00,15,6,Scattered clouds.,2,160,57,1022
1452
+ 20191229,12:00,18:00,15,13,Broken clouds.,5,260,66,1020
1453
+ 20191229,18:00,00:00,12,11,Passing clouds.,5,80,82,1018
1454
+ 20191230,00:00,06:00,11,10,Clear.,7,90,71,1016
1455
+ 20191230,06:00,12:00,15,10,Partly sunny.,14,80,50,1015
1456
+ 20191230,12:00,18:00,17,12,Broken clouds.,10,130,42,1013
1457
+ 20191230,18:00,00:00,13,10,Passing clouds.,3,300,64,1013
1458
+ 20191231,00:00,06:00,11,9,Partly cloudy.,4,140,69,1013
1459
+ 20191231,06:00,12:00,18,9,Broken clouds.,5,290,56,1015
1460
+ 20191231,12:00,18:00,20,16,Passing clouds.,20,320,45,1015
1461
+ 20191231,18:00,00:00,15,11,Passing clouds.,2,130,70,1018
weather/san-diego/raw_data/daily_weather_2020.csv ADDED
@@ -0,0 +1,1465 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20200101,00:00,06:00,11,8,Clear.,2,120,67,1018
3
+ 20200101,06:00,12:00,17,9,Sunny.,6,350,54,1018
4
+ 20200101,12:00,18:00,17,14,Sunny.,9,210,75,1015
5
+ 20200101,18:00,00:00,14,12,Passing clouds.,8,130,85,1014
6
+ 20200102,00:00,06:00,12,10,Passing clouds.,5,110,87,1013
7
+ 20200102,06:00,12:00,18,9,Scattered clouds.,5,70,70,1015
8
+ 20200102,12:00,18:00,18,14,Partly sunny.,19,320,70,1014
9
+ 20200102,18:00,00:00,14,12,Passing clouds.,4,340,88,1018
10
+ 20200103,00:00,06:00,11,9,Passing clouds.,2,320,85,1020
11
+ 20200103,06:00,12:00,18,9,Partly sunny.,2,180,57,1023
12
+ 20200103,12:00,18:00,19,15,Partly sunny.,9,190,66,1023
13
+ 20200103,18:00,00:00,14,12,Fog.,1,330,92,1026
14
+ 20200104,00:00,06:00,12,11,Fog.,0,0,90,1026
15
+ 20200104,06:00,12:00,17,10,Fog.,2,340,77,1027
16
+ 20200104,12:00,18:00,18,15,Partly sunny.,21,340,72,1025
17
+ 20200104,18:00,00:00,15,11,Fog.,8,330,89,1025
18
+ 20200105,00:00,06:00,13,9,Fog.,3,70,91,1025
19
+ 20200105,06:00,12:00,17,9,Fog.,3,190,81,1026
20
+ 20200105,12:00,18:00,17,14,Passing clouds.,16,320,76,1023
21
+ 20200105,18:00,00:00,14,11,Fog.,8,350,88,1023
22
+ 20200106,00:00,06:00,11,8,Clear.,5,350,85,1023
23
+ 20200106,06:00,12:00,23,11,Passing clouds.,4,290,52,1024
24
+ 20200106,12:00,18:00,24,18,Passing clouds.,10,350,31,1022
25
+ 20200106,18:00,00:00,16,11,Passing clouds.,2,110,64,1022
26
+ 20200107,00:00,06:00,12,8,Passing clouds.,2,350,54,1020
27
+ 20200107,06:00,12:00,20,8,Scattered clouds.,7,350,41,1020
28
+ 20200107,12:00,18:00,18,14,Scattered clouds.,9,200,80,1017
29
+ 20200107,18:00,00:00,13,10,Passing clouds.,6,350,89,1018
30
+ 20200108,00:00,06:00,9,7,Passing clouds.,6,120,78,1017
31
+ 20200108,06:00,12:00,16,7,Partly sunny.,1,160,72,1017
32
+ 20200108,12:00,18:00,16,14,Partly sunny.,12,190,65,1015
33
+ 20200108,18:00,00:00,14,13,Passing clouds.,9,190,69,1016
34
+ 20200109,00:00,06:00,14,12,Partly cloudy.,9,110,75,1016
35
+ 20200109,06:00,12:00,16,12,Broken clouds.,17,260,66,1016
36
+ 20200109,12:00,18:00,16,13,Broken clouds.,20,290,72,1014
37
+ 20200109,18:00,00:00,13,11,Passing clouds.,7,30,89,1016
38
+ 20200110,00:00,06:00,11,8,Passing clouds.,4,70,88,1020
39
+ 20200110,06:00,12:00,17,7,Sunny.,4,140,74,1023
40
+ 20200110,12:00,18:00,17,14,Sunny.,14,300,66,1022
41
+ 20200110,18:00,00:00,13,9,Clear.,4,340,84,1024
42
+ 20200111,00:00,06:00,9,7,Clear.,0,0,82,1022
43
+ 20200111,06:00,12:00,15,6,Passing clouds.,5,90,67,1022
44
+ 20200111,12:00,18:00,16,14,Scattered clouds.,9,220,72,1019
45
+ 20200111,18:00,00:00,14,13,Overcast.,7,110,76,1019
46
+ 20200112,00:00,06:00,12,8,Clear.,5,100,79,1019
47
+ 20200112,06:00,12:00,16,8,Passing clouds.,7,160,66,1019
48
+ 20200112,12:00,18:00,16,13,Passing clouds.,15,300,66,1017
49
+ 20200112,18:00,00:00,13,10,Passing clouds.,4,100,84,1019
50
+ 20200113,00:00,06:00,11,10,Passing clouds.,4,90,83,1019
51
+ 20200113,06:00,12:00,16,10,Passing clouds.,8,120,70,1020
52
+ 20200113,12:00,18:00,16,13,Passing clouds.,7,200,68,1018
53
+ 20200113,18:00,00:00,13,11,Passing clouds.,1,320,84,1019
54
+ 20200114,00:00,06:00,11,9,Passing clouds.,2,90,84,1019
55
+ 20200114,06:00,12:00,17,9,Partly sunny.,4,10,73,1021
56
+ 20200114,12:00,18:00,17,14,Partly sunny.,14,290,67,1018
57
+ 20200114,18:00,00:00,13,9,Passing clouds.,3,10,84,1018
58
+ 20200115,00:00,06:00,10,7,Passing clouds.,3,150,85,1017
59
+ 20200115,06:00,12:00,16,7,Scattered clouds.,5,100,68,1016
60
+ 20200115,12:00,18:00,16,14,Partly sunny.,18,320,71,1014
61
+ 20200115,18:00,00:00,12,11,Fog.,2,340,87,1016
62
+ 20200116,00:00,06:00,12,11,Fog.,6,80,86,1016
63
+ 20200116,06:00,12:00,14,10,Partly sunny.,5,130,78,1018
64
+ 20200116,12:00,18:00,15,13,Partly sunny.,14,270,63,1018
65
+ 20200116,18:00,00:00,13,12,Passing clouds.,6,220,66,1021
66
+ 20200117,00:00,06:00,13,12,Light rain. Overcast.,11,130,82,1021
67
+ 20200117,06:00,12:00,15,12,Broken clouds.,11,110,87,1023
68
+ 20200117,12:00,18:00,16,14,Broken clouds.,16,320,66,1022
69
+ 20200117,18:00,00:00,14,11,Passing clouds.,7,10,78,1023
70
+ 20200118,00:00,06:00,10,8,Clear.,2,10,86,1022
71
+ 20200118,06:00,12:00,18,8,Passing clouds.,4,0,68,1022
72
+ 20200118,12:00,18:00,19,15,Partly sunny.,16,320,54,1020
73
+ 20200118,18:00,00:00,14,11,Passing clouds.,6,10,79,1020
74
+ 20200119,00:00,06:00,10,8,Clear.,4,60,82,1019
75
+ 20200119,06:00,12:00,23,9,Scattered clouds.,5,0,54,1019
76
+ 20200119,12:00,18:00,17,15,Broken clouds.,11,210,82,1018
77
+ 20200119,18:00,00:00,15,13,Passing clouds.,4,210,91,1018
78
+ 20200120,00:00,06:00,13,11,Clear.,3,60,90,1017
79
+ 20200120,06:00,12:00,16,12,Broken clouds.,3,150,75,1019
80
+ 20200120,12:00,18:00,17,14,Broken clouds.,12,120,74,1017
81
+ 20200120,18:00,00:00,15,14,Light rain. Passing clouds.,8,190,81,1019
82
+ 20200121,00:00,06:00,14,12,Light rain. Fog.,9,180,90,1020
83
+ 20200121,06:00,12:00,14,12,More clouds than sun.,8,100,90,1021
84
+ 20200121,12:00,18:00,16,14,Broken clouds.,11,290,76,1021
85
+ 20200121,18:00,00:00,14,12,Passing clouds.,7,350,83,1022
86
+ 20200122,00:00,06:00,13,12,Partly cloudy.,2,10,86,1022
87
+ 20200122,06:00,12:00,17,12,Broken clouds.,4,290,75,1022
88
+ 20200122,12:00,18:00,17,15,Passing clouds.,16,280,70,1020
89
+ 20200122,18:00,00:00,14,13,Passing clouds.,9,10,82,1020
90
+ 20200123,00:00,06:00,12,9,Clear.,3,30,88,1020
91
+ 20200123,06:00,12:00,18,9,Scattered clouds.,6,310,77,1020
92
+ 20200123,12:00,18:00,18,15,Fog.,21,320,79,1017
93
+ 20200123,18:00,00:00,14,13,Fog.,9,10,91,1017
94
+ 20200124,00:00,06:00,13,12,Fog.,7,350,92,1016
95
+ 20200124,06:00,12:00,17,12,Partly sunny.,7,130,78,1017
96
+ 20200124,12:00,18:00,17,13,Scattered clouds.,9,280,81,1015
97
+ 20200124,18:00,00:00,13,12,Low clouds.,2,160,91,1016
98
+ 20200125,00:00,06:00,13,11,Dense fog.,4,140,93,1016
99
+ 20200125,06:00,12:00,14,13,Fog.,7,150,84,1018
100
+ 20200125,12:00,18:00,16,13,Scattered clouds.,9,210,78,1017
101
+ 20200125,18:00,00:00,13,13,Fog.,2,170,87,1019
102
+ 20200126,00:00,06:00,14,13,Overcast.,5,210,83,1020
103
+ 20200126,06:00,12:00,15,13,Fog.,6,90,80,1022
104
+ 20200126,12:00,18:00,16,14,Broken clouds.,12,220,70,1020
105
+ 20200126,18:00,00:00,14,14,Overcast.,7,260,70,1021
106
+ 20200127,00:00,06:00,14,10,Clear.,5,40,80,1022
107
+ 20200127,06:00,12:00,17,11,Sunny.,6,350,73,1023
108
+ 20200127,12:00,18:00,17,16,Scattered clouds.,21,320,71,1021
109
+ 20200127,18:00,00:00,15,12,Passing clouds.,4,350,86,1022
110
+ 20200128,00:00,06:00,12,10,Passing clouds.,3,10,89,1021
111
+ 20200128,06:00,12:00,21,11,Sunny.,6,40,63,1021
112
+ 20200128,12:00,18:00,20,16,Passing clouds.,18,320,58,1019
113
+ 20200128,18:00,00:00,15,12,Passing clouds.,7,110,88,1018
114
+ 20200129,00:00,06:00,12,11,Passing clouds.,3,50,90,1017
115
+ 20200129,06:00,12:00,17,11,Passing clouds.,8,80,74,1016
116
+ 20200129,12:00,18:00,21,17,Scattered clouds.,21,320,46,1013
117
+ 20200129,18:00,00:00,20,16,Passing clouds.,14,20,33,1017
118
+ 20200130,00:00,06:00,13,10,Clear.,6,90,50,1018
119
+ 20200130,06:00,12:00,20,9,Scattered clouds.,5,340,39,1019
120
+ 20200130,12:00,18:00,21,17,Partly sunny.,12,280,51,1018
121
+ 20200130,18:00,00:00,15,11,Passing clouds.,4,330,87,1019
122
+ 20200131,00:00,06:00,11,9,Passing clouds.,3,320,78,1020
123
+ 20200131,06:00,12:00,23,8,Scattered clouds.,4,110,46,1023
124
+ 20200131,12:00,18:00,26,20,Scattered clouds.,18,320,26,1021
125
+ 20200131,18:00,00:00,19,13,Passing clouds.,8,340,48,1023
126
+ 20200201,00:00,06:00,12,11,Clear.,0,0,66,1023
127
+ 20200201,06:00,12:00,24,8,Sunny.,4,330,39,1023
128
+ 20200201,12:00,18:00,26,21,Sunny.,16,320,21,1019
129
+ 20200201,18:00,00:00,21,14,Clear.,4,10,41,1018
130
+ 20200202,00:00,06:00,13,11,Clear.,3,350,62,1015
131
+ 20200202,06:00,12:00,18,11,Passing clouds.,7,160,67,1016
132
+ 20200202,12:00,18:00,16,14,Partly sunny.,12,190,76,1013
133
+ 20200202,18:00,00:00,15,14,Mostly cloudy.,18,210,77,1012
134
+ 20200203,00:00,06:00,15,14,Overcast.,18,210,63,1010
135
+ 20200203,06:00,12:00,17,14,Broken clouds.,23,300,38,1011
136
+ 20200203,12:00,18:00,16,15,Scattered clouds.,23,300,32,1011
137
+ 20200203,18:00,00:00,15,13,Passing clouds.,13,130,29,1014
138
+ 20200204,00:00,06:00,12,8,Passing clouds.,10,0,30,1017
139
+ 20200204,06:00,12:00,14,7,Sunny.,6,60,24,1020
140
+ 20200204,12:00,18:00,16,13,Passing clouds.,21,290,24,1018
141
+ 20200204,18:00,00:00,13,8,Passing clouds.,7,90,32,1021
142
+ 20200205,00:00,06:00,7,4,Clear.,3,350,39,1022
143
+ 20200205,06:00,12:00,14,6,Partly sunny.,0,0,28,1023
144
+ 20200205,12:00,18:00,14,13,Partly sunny.,7,280,45,1020
145
+ 20200205,18:00,00:00,13,9,Passing clouds.,4,330,56,1022
146
+ 20200206,00:00,06:00,8,7,Passing clouds.,5,110,52,1021
147
+ 20200206,06:00,12:00,16,7,Passing clouds.,5,200,44,1021
148
+ 20200206,12:00,18:00,17,14,Passing clouds.,10,250,62,1018
149
+ 20200206,18:00,00:00,13,11,Clear.,3,320,78,1019
150
+ 20200207,00:00,06:00,10,7,Clear.,3,80,79,1018
151
+ 20200207,06:00,12:00,17,8,Sunny.,6,0,67,1019
152
+ 20200207,12:00,18:00,17,15,Passing clouds.,19,320,60,1017
153
+ 20200207,18:00,00:00,14,11,Fog.,4,10,86,1018
154
+ 20200208,00:00,06:00,14,11,Overcast.,7,40,84,1017
155
+ 20200208,06:00,12:00,17,9,Passing clouds.,6,290,78,1017
156
+ 20200208,12:00,18:00,17,14,Passing clouds.,14,290,73,1014
157
+ 20200208,18:00,00:00,14,14,Overcast.,7,180,77,1014
158
+ 20200209,00:00,06:00,14,14,Mostly cloudy.,18,180,72,1013
159
+ 20200209,06:00,12:00,14,12,More clouds than sun.,21,210,75,1012
160
+ 20200209,12:00,18:00,14,13,Overcast.,21,190,70,1009
161
+ 20200209,18:00,00:00,14,12,Light rain. Mostly cloudy.,12,100,79,1009
162
+ 20200210,00:00,06:00,12,11,Light rain. Overcast.,8,250,84,1009
163
+ 20200210,06:00,12:00,13,11,Light rain. Mostly cloudy.,8,250,82,1011
164
+ 20200210,12:00,18:00,14,13,Scattered clouds.,11,230,73,1011
165
+ 20200210,18:00,00:00,13,11,Passing clouds.,7,110,84,1013
166
+ 20200211,00:00,06:00,10,8,Clear.,8,90,86,1014
167
+ 20200211,06:00,12:00,17,9,Sunny.,8,100,67,1016
168
+ 20200211,12:00,18:00,18,15,Passing clouds.,14,260,66,1016
169
+ 20200211,18:00,00:00,14,10,Clear.,2,130,82,1018
170
+ 20200212,00:00,06:00,10,7,Clear.,3,100,76,1018
171
+ 20200212,06:00,12:00,16,8,Scattered clouds.,8,190,59,1020
172
+ 20200212,12:00,18:00,17,14,Passing clouds.,10,210,72,1018
173
+ 20200212,18:00,00:00,14,11,Clear.,5,340,85,1018
174
+ 20200213,00:00,06:00,11,8,Clear.,2,80,84,1018
175
+ 20200213,06:00,12:00,17,8,Scattered clouds.,5,90,65,1019
176
+ 20200213,12:00,18:00,17,15,Scattered clouds.,19,320,62,1016
177
+ 20200213,18:00,00:00,14,12,Passing clouds.,7,10,81,1017
178
+ 20200214,00:00,06:00,11,9,Passing clouds.,1,350,90,1017
179
+ 20200214,06:00,12:00,17,8,Passing clouds.,7,310,73,1018
180
+ 20200214,12:00,18:00,17,15,Passing clouds.,17,310,66,1017
181
+ 20200214,18:00,00:00,14,12,Clear.,4,330,83,1019
182
+ 20200215,00:00,06:00,11,8,Clear.,2,0,88,1020
183
+ 20200215,06:00,12:00,17,8,Passing clouds.,6,310,64,1022
184
+ 20200215,12:00,18:00,18,15,Passing clouds.,21,320,62,1020
185
+ 20200215,18:00,00:00,14,12,Fog.,6,340,84,1021
186
+ 20200216,00:00,06:00,11,9,Clear.,3,90,86,1021
187
+ 20200216,06:00,12:00,17,9,Passing clouds.,3,310,71,1020
188
+ 20200216,12:00,18:00,17,16,Passing clouds.,13,290,70,1017
189
+ 20200216,18:00,00:00,15,12,Fog.,5,320,87,1016
190
+ 20200217,00:00,06:00,14,12,Fog.,6,110,87,1015
191
+ 20200217,06:00,12:00,16,12,Sunny.,6,190,80,1015
192
+ 20200217,12:00,18:00,17,15,Sunny.,11,280,71,1012
193
+ 20200217,18:00,00:00,14,13,Clear.,6,170,85,1014
194
+ 20200218,00:00,06:00,14,14,Overcast.,10,150,80,1014
195
+ 20200218,06:00,12:00,16,14,Partly sunny.,6,120,75,1016
196
+ 20200218,12:00,18:00,17,14,Partly sunny.,10,230,73,1015
197
+ 20200218,18:00,00:00,15,14,Overcast.,5,280,77,1016
198
+ 20200219,00:00,06:00,14,14,Overcast.,5,0,78,1016
199
+ 20200219,06:00,12:00,17,14,Overcast.,7,260,75,1018
200
+ 20200219,12:00,18:00,17,15,Passing clouds.,16,300,70,1017
201
+ 20200219,18:00,00:00,15,13,Passing clouds.,9,340,81,1018
202
+ 20200220,00:00,06:00,13,11,Passing clouds.,5,330,88,1018
203
+ 20200220,06:00,12:00,18,12,Fog.,12,330,83,1019
204
+ 20200220,12:00,18:00,21,16,Partly sunny.,14,330,63,1016
205
+ 20200220,18:00,00:00,16,14,Fog.,6,340,85,1017
206
+ 20200221,00:00,06:00,14,12,Fog.,6,330,88,1016
207
+ 20200221,06:00,12:00,16,11,Fog.,8,210,87,1017
208
+ 20200221,12:00,18:00,17,16,Partly sunny.,14,190,81,1015
209
+ 20200221,18:00,00:00,16,15,Passing clouds.,16,170,86,1017
210
+ 20200222,00:00,06:00,15,14,Partly cloudy.,15,140,84,1016
211
+ 20200222,06:00,12:00,16,13,Partly sunny.,17,140,79,1018
212
+ 20200222,12:00,18:00,17,15,Scattered clouds.,16,270,68,1018
213
+ 20200222,18:00,00:00,15,13,Passing clouds.,7,270,77,1021
214
+ 20200223,00:00,06:00,14,14,Passing clouds.,14,280,74,1022
215
+ 20200223,06:00,12:00,17,14,Partly sunny.,13,290,65,1026
216
+ 20200223,12:00,18:00,17,16,Passing clouds.,17,290,62,1024
217
+ 20200223,18:00,00:00,15,13,Clear.,4,340,77,1024
218
+ 20200224,00:00,06:00,13,12,Overcast.,3,110,82,1024
219
+ 20200224,06:00,12:00,17,14,Passing clouds.,10,40,70,1023
220
+ 20200224,12:00,18:00,18,16,Passing clouds.,24,320,68,1019
221
+ 20200224,18:00,00:00,16,13,Passing clouds.,7,350,84,1020
222
+ 20200225,00:00,06:00,13,12,Passing clouds.,3,10,87,1020
223
+ 20200225,06:00,12:00,23,12,Passing clouds.,9,330,78,1021
224
+ 20200225,12:00,18:00,23,18,Sunny.,15,310,41,1020
225
+ 20200225,18:00,00:00,17,14,Clear.,4,0,68,1023
226
+ 20200226,00:00,06:00,15,13,Clear.,3,220,38,1023
227
+ 20200226,06:00,12:00,22,12,Sunny.,10,20,30,1024
228
+ 20200226,12:00,18:00,22,18,Scattered clouds.,15,280,28,1021
229
+ 20200226,18:00,00:00,19,14,Passing clouds.,5,10,49,1021
230
+ 20200227,00:00,06:00,14,10,Passing clouds.,3,350,59,1021
231
+ 20200227,06:00,12:00,27,13,Partly sunny.,7,350,26,1020
232
+ 20200227,12:00,18:00,27,23,Partly sunny.,16,340,16,1019
233
+ 20200227,18:00,00:00,21,17,Passing clouds.,5,80,42,1019
234
+ 20200228,00:00,06:00,17,15,Passing clouds.,4,350,40,1018
235
+ 20200228,06:00,12:00,26,14,Partly sunny.,7,20,40,1019
236
+ 20200228,12:00,18:00,19,17,Partly sunny.,11,200,73,1018
237
+ 20200228,18:00,00:00,16,13,Passing clouds.,6,150,80,1020
238
+ 20200229,00:00,06:00,13,11,Clear.,2,130,69,1018
239
+ 20200229,06:00,12:00,18,13,Scattered clouds.,10,190,67,1019
240
+ 20200229,12:00,18:00,18,14,Scattered clouds.,14,220,69,1017
241
+ 20200229,18:00,00:00,15,15,Passing clouds.,12,190,67,1018
242
+ 20200301,00:00,06:00,15,14,Overcast.,14,200,70,1017
243
+ 20200301,06:00,12:00,16,14,Partly sunny.,17,230,56,1017
244
+ 20200301,12:00,18:00,15,12,Mostly cloudy.,17,230,63,1015
245
+ 20200301,18:00,00:00,12,12,Partly cloudy.,12,100,77,1013
246
+ 20200302,00:00,06:00,12,11,Overcast.,16,80,80,1011
247
+ 20200302,06:00,12:00,16,12,Broken clouds.,13,280,69,1012
248
+ 20200302,12:00,18:00,17,14,Broken clouds.,15,270,58,1011
249
+ 20200302,18:00,00:00,14,11,Passing clouds.,5,120,74,1012
250
+ 20200303,00:00,06:00,11,9,Passing clouds.,4,90,82,1012
251
+ 20200303,06:00,12:00,20,9,Passing clouds.,5,0,54,1014
252
+ 20200303,12:00,18:00,22,17,Sunny.,16,310,46,1013
253
+ 20200303,18:00,00:00,16,13,Clear.,2,220,86,1016
254
+ 20200304,00:00,06:00,14,12,Passing clouds.,9,100,83,1018
255
+ 20200304,06:00,12:00,17,12,Scattered clouds.,8,110,74,1020
256
+ 20200304,12:00,18:00,17,15,Partly sunny.,13,250,70,1020
257
+ 20200304,18:00,00:00,14,13,Passing clouds.,3,100,81,1021
258
+ 20200305,00:00,06:00,14,13,Passing clouds.,8,340,83,1021
259
+ 20200305,06:00,12:00,19,13,Partly sunny.,13,320,75,1021
260
+ 20200305,12:00,18:00,19,16,Partly sunny.,24,330,69,1017
261
+ 20200305,18:00,00:00,16,14,Partly cloudy.,6,350,84,1018
262
+ 20200306,00:00,06:00,15,14,Low clouds.,9,10,85,1016
263
+ 20200306,06:00,12:00,17,15,Partly sunny.,10,210,75,1017
264
+ 20200306,12:00,18:00,18,15,Passing clouds.,14,270,71,1015
265
+ 20200306,18:00,00:00,15,14,Overcast.,7,310,75,1016
266
+ 20200307,00:00,06:00,14,14,Overcast.,5,230,70,1016
267
+ 20200307,06:00,12:00,17,14,Broken clouds.,7,220,67,1017
268
+ 20200307,12:00,18:00,17,15,Scattered clouds.,16,270,65,1015
269
+ 20200307,18:00,00:00,15,14,Passing clouds.,9,300,72,1016
270
+ 20200308,00:00,06:00,14,13,Mostly cloudy.,5,170,86,1015
271
+ 20200308,06:00,12:00,16,13,Scattered clouds.,7,180,83,1016
272
+ 20200308,12:00,18:00,17,16,Scattered clouds.,13,200,61,1017
273
+ 20200308,18:00,00:00,16,14,Partly cloudy.,2,250,69,1018
274
+ 20200309,00:00,06:00,13,11,Clear.,3,60,72,1018
275
+ 20200309,06:00,12:00,20,11,Partly sunny.,6,150,56,1018
276
+ 20200309,12:00,18:00,21,17,More clouds than sun.,20,170,57,1017
277
+ 20200309,18:00,00:00,16,15,Light rain. Mostly cloudy.,13,0,76,1017
278
+ 20200310,00:00,06:00,18,15,Low clouds.,19,150,85,1016
279
+ 20200310,06:00,12:00,19,18,Light rain. Fog.,19,160,81,1016
280
+ 20200310,12:00,18:00,19,17,Mostly cloudy.,22,180,89,1016
281
+ 20200310,18:00,00:00,17,17,Mostly cloudy.,19,190,92,1016
282
+ 20200311,00:00,06:00,17,16,Mostly cloudy.,9,180,90,1017
283
+ 20200311,06:00,12:00,19,16,Broken clouds.,8,230,84,1017
284
+ 20200311,12:00,18:00,19,18,Partly sunny.,14,280,72,1015
285
+ 20200311,18:00,00:00,17,16,Partly cloudy.,12,320,82,1014
286
+ 20200312,00:00,06:00,17,16,Passing clouds.,7,10,85,1011
287
+ 20200312,06:00,12:00,16,15,Mostly cloudy.,11,290,87,1010
288
+ 20200312,12:00,18:00,17,14,Broken clouds.,12,190,78,1010
289
+ 20200312,18:00,00:00,16,14,Passing clouds.,15,210,79,1010
290
+ 20200313,00:00,06:00,15,14,Partly cloudy.,14,220,81,1011
291
+ 20200313,06:00,12:00,16,14,Light rain. Broken clouds.,18,200,82,1013
292
+ 20200313,12:00,18:00,16,15,Partly sunny.,14,210,80,1014
293
+ 20200313,18:00,00:00,16,15,Fog.,4,270,82,1017
294
+ 20200314,00:00,06:00,15,14,Overcast.,4,20,84,1018
295
+ 20200314,06:00,12:00,16,14,Broken clouds.,4,340,84,1019
296
+ 20200314,12:00,18:00,18,17,Partly sunny.,8,190,65,1020
297
+ 20200314,18:00,00:00,16,15,Passing clouds.,3,280,75,1020
298
+ 20200315,00:00,06:00,15,14,Mostly cloudy.,3,80,82,1020
299
+ 20200315,06:00,12:00,16,12,Broken clouds.,10,120,78,1020
300
+ 20200315,12:00,18:00,18,16,Broken clouds.,14,290,64,1020
301
+ 20200315,18:00,00:00,16,13,Passing clouds.,3,280,72,1020
302
+ 20200316,00:00,06:00,14,13,Overcast.,5,100,77,1018
303
+ 20200316,06:00,12:00,17,14,Partly sunny.,11,140,68,1018
304
+ 20200316,12:00,18:00,18,16,Broken clouds.,23,190,61,1016
305
+ 20200316,18:00,00:00,16,12,Partly cloudy.,27,170,77,1015
306
+ 20200317,00:00,06:00,13,13,Light rain. Partly cloudy.,12,290,77,1015
307
+ 20200317,06:00,12:00,16,13,Broken clouds.,11,310,60,1016
308
+ 20200317,12:00,18:00,16,15,Passing clouds.,13,270,48,1014
309
+ 20200317,18:00,00:00,14,12,Passing clouds.,3,270,57,1013
310
+ 20200318,00:00,06:00,12,12,Passing clouds.,9,30,64,1011
311
+ 20200318,06:00,12:00,12,11,Light rain. Overcast.,23,350,79,1008
312
+ 20200318,12:00,18:00,16,12,Partly sunny.,35,320,69,1008
313
+ 20200318,18:00,00:00,14,13,Passing clouds.,21,260,62,1012
314
+ 20200319,00:00,06:00,13,12,Partly cloudy.,16,280,69,1015
315
+ 20200319,06:00,12:00,16,13,Broken clouds.,11,290,63,1019
316
+ 20200319,12:00,18:00,17,16,Broken clouds.,17,210,58,1020
317
+ 20200319,18:00,00:00,15,14,Partly cloudy.,18,170,71,1021
318
+ 20200320,00:00,06:00,14,11,Partly cloudy.,10,90,83,1022
319
+ 20200320,06:00,12:00,16,12,Broken clouds.,7,190,70,1023
320
+ 20200320,12:00,18:00,16,16,Broken clouds.,10,210,70,1021
321
+ 20200320,18:00,00:00,16,14,Passing clouds.,4,270,77,1021
322
+ 20200321,00:00,06:00,14,12,Passing clouds.,5,90,81,1020
323
+ 20200321,06:00,12:00,17,12,Passing clouds.,8,180,77,1021
324
+ 20200321,12:00,18:00,18,16,Scattered clouds.,14,240,62,1020
325
+ 20200321,18:00,00:00,16,13,Passing clouds.,3,280,71,1021
326
+ 20200322,00:00,06:00,13,11,Clear.,4,80,79,1020
327
+ 20200322,06:00,12:00,18,11,Scattered clouds.,8,140,68,1020
328
+ 20200322,12:00,18:00,18,17,Broken clouds.,13,210,68,1019
329
+ 20200322,18:00,00:00,17,17,Mostly cloudy.,16,170,80,1018
330
+ 20200323,00:00,06:00,17,15,Mostly cloudy.,16,250,83,1019
331
+ 20200323,06:00,12:00,17,15,Broken clouds.,15,270,68,1021
332
+ 20200323,12:00,18:00,18,17,Scattered clouds.,15,230,60,1021
333
+ 20200323,18:00,00:00,16,14,Passing clouds.,8,290,68,1022
334
+ 20200324,00:00,06:00,13,12,Passing clouds.,3,40,77,1021
335
+ 20200324,06:00,12:00,18,12,Broken clouds.,6,270,69,1022
336
+ 20200324,12:00,18:00,18,17,Scattered clouds.,23,300,56,1021
337
+ 20200324,18:00,00:00,16,15,Passing clouds.,22,320,64,1021
338
+ 20200325,00:00,06:00,14,14,Partly cloudy.,14,310,62,1019
339
+ 20200325,06:00,12:00,17,14,Partly sunny.,9,310,63,1019
340
+ 20200325,12:00,18:00,17,14,More clouds than sun.,21,270,61,1017
341
+ 20200325,18:00,00:00,15,13,Partly cloudy.,12,280,72,1017
342
+ 20200326,00:00,06:00,14,13,Passing clouds.,27,310,61,1016
343
+ 20200326,06:00,12:00,16,12,Broken clouds.,22,330,53,1017
344
+ 20200326,12:00,18:00,17,14,Broken clouds.,27,290,46,1017
345
+ 20200326,18:00,00:00,13,11,Passing clouds.,22,300,63,1017
346
+ 20200327,00:00,06:00,12,9,Passing clouds.,19,300,69,1017
347
+ 20200327,06:00,12:00,16,8,Scattered clouds.,10,100,68,1019
348
+ 20200327,12:00,18:00,16,16,Passing clouds.,12,300,48,1020
349
+ 20200327,18:00,00:00,14,11,Passing clouds.,7,270,62,1022
350
+ 20200328,00:00,06:00,11,9,Clear.,6,90,72,1021
351
+ 20200328,06:00,12:00,16,8,Scattered clouds.,7,80,63,1022
352
+ 20200328,12:00,18:00,17,16,Partly sunny.,12,250,57,1020
353
+ 20200328,18:00,00:00,15,13,Passing clouds.,5,230,65,1019
354
+ 20200329,00:00,06:00,13,11,Mostly cloudy.,5,100,78,1019
355
+ 20200329,06:00,12:00,17,10,Scattered clouds.,8,190,70,1020
356
+ 20200329,12:00,18:00,18,17,Passing clouds.,16,290,62,1019
357
+ 20200329,18:00,00:00,16,15,Passing clouds.,12,320,70,1020
358
+ 20200330,00:00,06:00,16,12,Passing clouds.,1,40,75,1021
359
+ 20200330,06:00,12:00,19,13,Passing clouds.,9,100,65,1023
360
+ 20200330,12:00,18:00,19,18,Scattered clouds.,25,300,60,1021
361
+ 20200330,18:00,00:00,17,15,Passing clouds.,16,330,73,1021
362
+ 20200331,00:00,06:00,15,13,Passing clouds.,5,10,82,1019
363
+ 20200331,06:00,12:00,18,14,Partly sunny.,9,340,76,1017
364
+ 20200331,12:00,18:00,19,17,Broken clouds.,15,320,64,1014
365
+ 20200331,18:00,00:00,17,14,Partly cloudy.,6,290,84,1013
366
+ 20200401,00:00,06:00,14,14,Fog.,6,180,90,1011
367
+ 20200401,06:00,12:00,17,14,Fog.,11,180,83,1012
368
+ 20200401,12:00,18:00,18,16,Partly sunny.,16,210,72,1011
369
+ 20200401,18:00,00:00,16,16,Passing clouds.,14,170,78,1012
370
+ 20200402,00:00,06:00,16,14,Passing clouds.,12,180,80,1013
371
+ 20200402,06:00,12:00,17,14,Broken clouds.,14,180,72,1015
372
+ 20200402,12:00,18:00,18,16,Partly sunny.,17,210,64,1015
373
+ 20200402,18:00,00:00,15,14,Passing clouds.,12,130,64,1015
374
+ 20200403,00:00,06:00,14,12,Passing clouds.,6,100,69,1015
375
+ 20200403,06:00,12:00,17,11,Passing clouds.,10,100,69,1015
376
+ 20200403,12:00,18:00,18,17,Passing clouds.,14,250,67,1013
377
+ 20200403,18:00,00:00,16,14,Passing clouds.,6,220,77,1014
378
+ 20200404,00:00,06:00,15,14,Overcast.,14,150,76,1013
379
+ 20200404,06:00,12:00,17,14,Partly sunny.,14,210,67,1014
380
+ 20200404,12:00,18:00,17,16,Partly sunny.,18,210,66,1012
381
+ 20200404,18:00,00:00,16,14,Overcast.,14,170,68,1013
382
+ 20200405,00:00,06:00,15,14,Mostly cloudy.,16,160,67,1013
383
+ 20200405,06:00,12:00,17,15,More clouds than sun.,15,190,65,1013
384
+ 20200405,12:00,18:00,18,17,Scattered clouds.,15,250,60,1012
385
+ 20200405,18:00,00:00,16,14,Overcast.,17,200,76,1013
386
+ 20200406,00:00,06:00,15,13,Mostly cloudy.,21,180,83,1013
387
+ 20200406,06:00,12:00,17,14,Broken clouds.,32,170,77,1014
388
+ 20200406,12:00,18:00,18,14,Partly sunny.,29,200,80,1015
389
+ 20200406,18:00,00:00,14,14,Rain. Fog.,17,170,89,1016
390
+ 20200407,00:00,06:00,14,12,Light rain. Fog.,9,110,88,1017
391
+ 20200407,06:00,12:00,17,13,Light rain. Broken clouds.,9,30,84,1017
392
+ 20200407,12:00,18:00,17,15,Broken clouds.,32,190,82,1016
393
+ 20200407,18:00,00:00,14,13,Light rain. Partly cloudy.,15,10,84,1017
394
+ 20200408,00:00,06:00,13,11,Light rain. Passing clouds.,9,10,85,1015
395
+ 20200408,06:00,12:00,14,11,Broken clouds.,15,190,73,1017
396
+ 20200408,12:00,18:00,16,14,Broken clouds.,20,180,62,1018
397
+ 20200408,18:00,00:00,14,13,Partly cloudy.,14,180,65,1019
398
+ 20200409,00:00,06:00,13,12,Partly cloudy.,18,130,77,1019
399
+ 20200409,06:00,12:00,16,12,Broken clouds.,22,140,75,1021
400
+ 20200409,12:00,18:00,17,14,Broken clouds.,19,190,68,1019
401
+ 20200409,18:00,00:00,13,13,Rain. Fog.,10,220,85,1019
402
+ 20200410,00:00,06:00,13,13,Light rain. Overcast.,22,200,85,1017
403
+ 20200410,06:00,12:00,13,13,Light rain. Broken clouds.,24,170,87,1016
404
+ 20200410,12:00,18:00,14,13,Light rain. Mostly cloudy.,21,160,87,1014
405
+ 20200410,18:00,00:00,14,12,Passing clouds.,11,100,81,1014
406
+ 20200411,00:00,06:00,13,11,Overcast.,5,10,80,1014
407
+ 20200411,06:00,12:00,16,11,Scattered clouds.,4,130,74,1016
408
+ 20200411,12:00,18:00,18,17,Scattered clouds.,13,200,70,1016
409
+ 20200411,18:00,00:00,16,16,Passing clouds.,13,300,73,1017
410
+ 20200412,00:00,06:00,16,14,Overcast.,10,290,74,1017
411
+ 20200412,06:00,12:00,17,14,Broken clouds.,12,240,71,1019
412
+ 20200412,12:00,18:00,16,16,Broken clouds.,13,260,71,1019
413
+ 20200412,18:00,00:00,16,14,Partly cloudy.,12,220,78,1019
414
+ 20200413,00:00,06:00,14,13,Overcast.,9,260,85,1019
415
+ 20200413,06:00,12:00,15,14,Light rain. Fog.,6,210,86,1020
416
+ 20200413,12:00,18:00,18,16,Partly sunny.,19,320,72,1020
417
+ 20200413,18:00,00:00,16,16,Passing clouds.,15,310,76,1020
418
+ 20200414,00:00,06:00,16,16,Passing clouds.,15,320,77,1020
419
+ 20200414,06:00,12:00,18,16,Passing clouds.,16,350,74,1020
420
+ 20200414,12:00,18:00,19,18,Passing clouds.,32,320,64,1018
421
+ 20200414,18:00,00:00,17,16,Passing clouds.,9,310,80,1018
422
+ 20200415,00:00,06:00,14,13,Passing clouds.,2,260,88,1018
423
+ 20200415,06:00,12:00,21,13,Sunny.,4,180,58,1018
424
+ 20200415,12:00,18:00,23,22,Sunny.,13,260,45,1016
425
+ 20200415,18:00,00:00,21,16,Clear.,6,320,74,1015
426
+ 20200416,00:00,06:00,15,12,Passing clouds.,5,110,81,1014
427
+ 20200416,06:00,12:00,18,13,Passing clouds.,8,180,75,1015
428
+ 20200416,12:00,18:00,21,19,Passing clouds.,15,290,62,1014
429
+ 20200416,18:00,00:00,18,15,Passing clouds.,5,260,77,1014
430
+ 20200417,00:00,06:00,15,14,Passing clouds.,4,260,84,1013
431
+ 20200417,06:00,12:00,17,15,Partly sunny.,11,240,67,1015
432
+ 20200417,12:00,18:00,18,17,Mostly cloudy.,13,210,59,1016
433
+ 20200417,18:00,00:00,16,16,Passing clouds.,9,240,73,1017
434
+ 20200418,00:00,06:00,16,14,Overcast.,7,280,78,1017
435
+ 20200418,06:00,12:00,18,16,Broken clouds.,16,300,63,1018
436
+ 20200418,12:00,18:00,19,18,Scattered clouds.,20,300,59,1018
437
+ 20200418,18:00,00:00,17,16,Passing clouds.,16,320,65,1018
438
+ 20200419,00:00,06:00,16,14,Mostly cloudy.,12,350,75,1018
439
+ 20200419,06:00,12:00,17,15,Mostly cloudy.,14,320,68,1018
440
+ 20200419,12:00,18:00,18,17,More clouds than sun.,23,300,63,1017
441
+ 20200419,18:00,00:00,17,16,Overcast.,17,310,70,1017
442
+ 20200420,00:00,06:00,16,15,Mostly cloudy.,17,320,80,1017
443
+ 20200420,06:00,12:00,18,16,Broken clouds.,18,330,71,1018
444
+ 20200420,12:00,18:00,19,17,Broken clouds.,20,300,62,1019
445
+ 20200420,18:00,00:00,17,15,Mostly cloudy.,12,320,70,1019
446
+ 20200421,00:00,06:00,17,16,Partly cloudy.,11,280,74,1019
447
+ 20200421,06:00,12:00,19,15,Partly sunny.,11,280,68,1020
448
+ 20200421,12:00,18:00,20,18,Passing clouds.,19,280,64,1019
449
+ 20200421,18:00,00:00,17,15,Passing clouds.,11,320,73,1019
450
+ 20200422,00:00,06:00,14,14,Clear.,3,30,81,1019
451
+ 20200422,06:00,12:00,21,14,Sunny.,10,320,71,1019
452
+ 20200422,12:00,18:00,23,22,Passing clouds.,21,320,50,1017
453
+ 20200422,18:00,00:00,19,16,Clear.,6,310,75,1017
454
+ 20200423,00:00,06:00,17,14,Clear.,3,340,83,1016
455
+ 20200423,06:00,12:00,23,15,Passing clouds.,5,190,72,1015
456
+ 20200423,12:00,18:00,25,22,Passing clouds.,12,200,58,1012
457
+ 20200423,18:00,00:00,21,17,Clear.,6,190,84,1012
458
+ 20200424,00:00,06:00,17,16,Fog.,1,170,90,1012
459
+ 20200424,06:00,12:00,26,16,Fog.,6,330,76,1013
460
+ 20200424,12:00,18:00,26,20,Scattered clouds.,16,200,66,1012
461
+ 20200424,18:00,00:00,19,17,Fog.,6,210,89,1013
462
+ 20200425,00:00,06:00,17,17,Fog.,6,180,92,1013
463
+ 20200425,06:00,12:00,19,17,Fog.,6,190,88,1014
464
+ 20200425,12:00,18:00,26,22,Passing clouds.,13,260,58,1013
465
+ 20200425,18:00,00:00,21,17,Fog.,3,210,90,1014
466
+ 20200426,00:00,06:00,18,17,Fog.,3,270,90,1013
467
+ 20200426,06:00,12:00,26,18,Fog.,5,180,81,1014
468
+ 20200426,12:00,18:00,26,22,Passing clouds.,12,270,64,1013
469
+ 20200426,18:00,00:00,21,18,Passing clouds.,5,320,83,1014
470
+ 20200427,00:00,06:00,18,17,Low clouds.,2,150,88,1014
471
+ 20200427,06:00,12:00,20,18,Passing clouds.,11,210,78,1015
472
+ 20200427,12:00,18:00,21,20,Scattered clouds.,14,210,70,1015
473
+ 20200427,18:00,00:00,19,17,,4,200,82,1015
474
+ 20200428,00:00,06:00,18,17,,6,170,86,1015
475
+ 20200428,06:00,12:00,21,17,,8,210,81,1015
476
+ 20200428,12:00,18:00,21,19,,14,210,72,1015
477
+ 20200428,18:00,00:00,19,17,,5,310,80,1015
478
+ 20200429,00:00,06:00,18,17,,3,190,85,1015
479
+ 20200429,06:00,12:00,19,17,,6,270,84,1016
480
+ 20200429,12:00,18:00,20,19,,10,220,78,1015
481
+ 20200429,18:00,00:00,19,18,,7,260,81,1015
482
+ 20200430,00:00,06:00,18,17,Mostly cloudy.,8,310,87,1014
483
+ 20200430,06:00,12:00,20,18,Cloudy.,7,260,84,1014
484
+ 20200430,12:00,18:00,22,19,Partly sunny.,11,260,71,1013
485
+ 20200430,18:00,00:00,19,18,Overcast.,8,350,79,1013
486
+ 20200501,00:00,06:00,18,17,Low clouds.,3,250,84,1012
487
+ 20200501,06:00,12:00,21,18,Overcast.,6,200,75,1014
488
+ 20200501,12:00,18:00,22,21,Passing clouds.,14,250,66,1014
489
+ 20200501,18:00,00:00,19,17,Passing clouds.,9,170,82,1014
490
+ 20200502,00:00,06:00,18,17,Overcast.,6,160,83,1014
491
+ 20200502,06:00,12:00,21,18,Passing clouds.,8,170,74,1016
492
+ 20200502,12:00,18:00,23,21,Passing clouds.,17,290,65,1016
493
+ 20200502,18:00,00:00,19,17,Passing clouds.,6,260,80,1017
494
+ 20200503,00:00,06:00,18,17,Overcast.,4,150,76,1016
495
+ 20200503,06:00,12:00,21,17,Passing clouds.,9,90,70,1017
496
+ 20200503,12:00,18:00,22,19,Scattered clouds.,15,280,66,1017
497
+ 20200503,18:00,00:00,19,17,Passing clouds.,7,260,78,1016
498
+ 20200504,00:00,06:00,17,16,Overcast.,2,10,80,1015
499
+ 20200504,06:00,12:00,22,17,Passing clouds.,10,330,70,1016
500
+ 20200504,12:00,18:00,23,22,Passing clouds.,18,310,65,1014
501
+ 20200504,18:00,00:00,21,19,Clear.,11,340,70,1014
502
+ 20200505,00:00,06:00,19,18,Passing clouds.,8,340,84,1013
503
+ 20200505,06:00,12:00,24,18,Passing clouds.,9,310,71,1014
504
+ 20200505,12:00,18:00,26,23,Sunny.,18,310,57,1013
505
+ 20200505,18:00,00:00,22,19,Passing clouds.,11,310,78,1014
506
+ 20200506,00:00,06:00,19,17,Passing clouds.,6,340,84,1012
507
+ 20200506,06:00,12:00,27,18,Scattered clouds.,10,310,63,1012
508
+ 20200506,12:00,18:00,28,27,Passing clouds.,20,320,42,1011
509
+ 20200506,18:00,00:00,25,18,Passing clouds.,9,320,65,1011
510
+ 20200507,00:00,06:00,18,16,Fog.,5,180,90,1010
511
+ 20200507,06:00,12:00,19,17,Fog.,8,190,87,1011
512
+ 20200507,12:00,18:00,22,21,Scattered clouds.,12,200,74,1011
513
+ 20200507,18:00,00:00,20,18,Passing clouds.,6,180,83,1011
514
+ 20200508,00:00,06:00,18,17,Fog.,8,160,90,1011
515
+ 20200508,06:00,12:00,20,17,Fog.,5,180,85,1012
516
+ 20200508,12:00,18:00,22,21,Scattered clouds.,12,180,70,1013
517
+ 20200508,18:00,00:00,20,18,Passing clouds.,6,230,78,1012
518
+ 20200509,00:00,06:00,18,18,Overcast.,3,220,81,1012
519
+ 20200509,06:00,12:00,21,19,Overcast.,9,180,76,1014
520
+ 20200509,12:00,18:00,21,20,Overcast.,11,240,70,1014
521
+ 20200509,18:00,00:00,20,18,Passing clouds.,10,300,77,1013
522
+ 20200510,00:00,06:00,19,18,Overcast.,4,200,80,1013
523
+ 20200510,06:00,12:00,21,18,Overcast.,8,210,79,1015
524
+ 20200510,12:00,18:00,22,19,Overcast.,15,260,68,1015
525
+ 20200510,18:00,00:00,19,18,Mostly cloudy.,12,250,72,1015
526
+ 20200511,00:00,06:00,18,18,Passing clouds.,9,0,71,1015
527
+ 20200511,06:00,12:00,21,18,Partly sunny.,17,290,63,1016
528
+ 20200511,12:00,18:00,22,19,Scattered clouds.,18,280,60,1015
529
+ 20200511,18:00,00:00,19,17,Passing clouds.,12,330,68,1016
530
+ 20200512,00:00,06:00,17,14,Passing clouds.,4,270,76,1016
531
+ 20200512,06:00,12:00,21,16,Scattered clouds.,10,190,65,1016
532
+ 20200512,12:00,18:00,22,21,Scattered clouds.,18,280,59,1016
533
+ 20200512,18:00,00:00,20,18,Partly cloudy.,19,310,77,1015
534
+ 20200513,00:00,06:00,18,16,Partly cloudy.,18,300,70,1015
535
+ 20200513,06:00,12:00,20,17,Broken clouds.,11,240,61,1016
536
+ 20200513,12:00,18:00,21,20,Scattered clouds.,15,260,55,1016
537
+ 20200513,18:00,00:00,19,17,Passing clouds.,7,320,67,1016
538
+ 20200514,00:00,06:00,17,14,Passing clouds.,5,100,78,1016
539
+ 20200514,06:00,12:00,22,16,Broken clouds.,9,140,66,1016
540
+ 20200514,12:00,18:00,22,20,Broken clouds.,18,270,61,1015
541
+ 20200514,18:00,00:00,21,17,Passing clouds.,9,320,72,1015
542
+ 20200515,00:00,06:00,18,18,Passing clouds.,9,190,76,1014
543
+ 20200515,06:00,12:00,22,18,Scattered clouds.,13,190,64,1014
544
+ 20200515,12:00,18:00,23,21,Scattered clouds.,16,280,62,1012
545
+ 20200515,18:00,00:00,20,18,Passing clouds.,7,310,74,1012
546
+ 20200516,00:00,06:00,18,17,Clear.,4,190,82,1011
547
+ 20200516,06:00,12:00,21,18,Overcast.,9,190,73,1012
548
+ 20200516,12:00,18:00,21,20,Scattered clouds.,15,210,69,1011
549
+ 20200516,18:00,00:00,19,18,Passing clouds.,5,160,78,1011
550
+ 20200517,00:00,06:00,18,18,Passing clouds.,5,180,82,1011
551
+ 20200517,06:00,12:00,20,18,Overcast.,10,160,76,1013
552
+ 20200517,12:00,18:00,22,19,Partly sunny.,12,210,66,1014
553
+ 20200517,18:00,00:00,19,18,Passing clouds.,11,280,69,1013
554
+ 20200518,00:00,06:00,19,18,Overcast.,5,10,66,1013
555
+ 20200518,06:00,12:00,23,19,Broken clouds.,12,250,63,1015
556
+ 20200518,12:00,18:00,23,22,Broken clouds.,19,280,65,1015
557
+ 20200518,18:00,00:00,22,19,Partly cloudy.,20,310,68,1015
558
+ 20200519,00:00,06:00,19,17,Passing clouds.,23,310,62,1015
559
+ 20200519,06:00,12:00,21,18,Scattered clouds.,21,290,53,1016
560
+ 20200519,12:00,18:00,22,21,Passing clouds.,24,290,48,1017
561
+ 20200519,18:00,00:00,19,17,Passing clouds.,13,310,65,1017
562
+ 20200520,00:00,06:00,16,14,Passing clouds.,3,100,75,1017
563
+ 20200520,06:00,12:00,22,16,Passing clouds.,12,90,59,1018
564
+ 20200520,12:00,18:00,23,21,Sunny.,23,300,56,1016
565
+ 20200520,18:00,00:00,20,17,Passing clouds.,11,310,72,1015
566
+ 20200521,00:00,06:00,17,15,Passing clouds.,1,150,83,1014
567
+ 20200521,06:00,12:00,22,16,Passing clouds.,8,280,68,1014
568
+ 20200521,12:00,18:00,23,21,Passing clouds.,16,300,56,1012
569
+ 20200521,18:00,00:00,21,17,Passing clouds.,5,0,81,1012
570
+ 20200522,00:00,06:00,17,17,Passing clouds.,6,140,84,1012
571
+ 20200522,06:00,12:00,21,17,Partly sunny.,11,210,68,1013
572
+ 20200522,12:00,18:00,20,18,Scattered clouds.,17,210,64,1012
573
+ 20200522,18:00,00:00,18,17,Overcast.,14,200,70,1013
574
+ 20200523,00:00,06:00,17,17,Mostly cloudy.,11,130,71,1013
575
+ 20200523,06:00,12:00,20,17,Scattered clouds.,13,210,65,1013
576
+ 20200523,12:00,18:00,20,19,Passing clouds.,14,210,59,1013
577
+ 20200523,18:00,00:00,19,17,Passing clouds.,4,260,72,1013
578
+ 20200524,00:00,06:00,16,15,Clear.,1,90,80,1013
579
+ 20200524,06:00,12:00,22,17,Scattered clouds.,12,270,67,1014
580
+ 20200524,12:00,18:00,22,19,Partly sunny.,16,270,62,1013
581
+ 20200524,18:00,00:00,19,17,Passing clouds.,9,310,77,1012
582
+ 20200525,00:00,06:00,18,17,Low clouds.,5,230,80,1012
583
+ 20200525,06:00,12:00,21,17,Overcast.,9,0,76,1013
584
+ 20200525,12:00,18:00,23,22,Scattered clouds.,21,320,63,1011
585
+ 20200525,18:00,00:00,21,18,Passing clouds.,6,270,80,1012
586
+ 20200526,00:00,06:00,18,18,Low clouds.,6,260,82,1012
587
+ 20200526,06:00,12:00,22,18,Passing clouds.,9,0,75,1012
588
+ 20200526,12:00,18:00,24,22,Passing clouds.,17,320,62,1012
589
+ 20200526,18:00,00:00,21,18,Passing clouds.,14,340,80,1012
590
+ 20200527,00:00,06:00,18,17,Passing clouds.,7,280,84,1013
591
+ 20200527,06:00,12:00,23,18,Passing clouds.,10,310,70,1013
592
+ 20200527,12:00,18:00,24,20,Scattered clouds.,17,300,64,1012
593
+ 20200527,18:00,00:00,19,18,Passing clouds.,7,270,79,1014
594
+ 20200528,00:00,06:00,18,18,Overcast.,8,0,80,1013
595
+ 20200528,06:00,12:00,21,18,Scattered clouds.,12,290,72,1014
596
+ 20200528,12:00,18:00,22,20,Partly sunny.,13,240,71,1015
597
+ 20200528,18:00,00:00,19,18,Overcast.,8,280,77,1015
598
+ 20200529,00:00,06:00,18,18,Overcast.,6,230,80,1014
599
+ 20200529,06:00,12:00,20,18,Overcast.,11,250,75,1016
600
+ 20200529,12:00,18:00,21,20,Overcast.,13,260,65,1015
601
+ 20200529,18:00,00:00,20,18,Passing clouds.,11,300,69,1016
602
+ 20200530,00:00,06:00,19,18,Overcast.,11,330,69,1015
603
+ 20200530,06:00,12:00,22,19,Partly sunny.,20,310,59,1015
604
+ 20200530,12:00,18:00,23,22,Partly sunny.,27,300,56,1014
605
+ 20200530,18:00,00:00,21,19,Passing clouds.,21,330,70,1014
606
+ 20200531,00:00,06:00,19,18,Passing clouds.,12,330,77,1013
607
+ 20200531,06:00,12:00,22,18,Partly sunny.,22,330,67,1013
608
+ 20200531,12:00,18:00,22,21,Partly sunny.,23,300,62,1012
609
+ 20200531,18:00,00:00,20,18,Passing clouds.,15,320,76,1013
610
+ 20200601,00:00,06:00,18,17,Clear.,13,340,82,1012
611
+ 20200601,06:00,12:00,23,17,Partly sunny.,14,300,66,1013
612
+ 20200601,12:00,18:00,23,22,Partly sunny.,20,310,63,1012
613
+ 20200601,18:00,00:00,21,19,Passing clouds.,7,280,75,1012
614
+ 20200602,00:00,06:00,19,15,Passing clouds.,2,280,85,1012
615
+ 20200602,06:00,12:00,21,16,Partly sunny.,8,180,79,1014
616
+ 20200602,12:00,18:00,22,21,Partly sunny.,12,280,68,1014
617
+ 20200602,18:00,00:00,21,19,Partly cloudy.,12,320,78,1014
618
+ 20200603,00:00,06:00,20,19,Passing clouds.,11,340,82,1012
619
+ 20200603,06:00,12:00,26,19,Broken clouds.,9,0,65,1013
620
+ 20200603,12:00,18:00,24,21,Passing clouds.,14,200,67,1011
621
+ 20200603,18:00,00:00,20,18,Overcast.,8,190,81,1012
622
+ 20200604,00:00,06:00,18,18,Low clouds.,6,160,87,1011
623
+ 20200604,06:00,12:00,19,17,Drizzle. Fog.,14,180,83,1012
624
+ 20200604,12:00,18:00,21,20,Partly sunny.,16,170,74,1011
625
+ 20200604,18:00,00:00,19,18,Overcast.,9,180,77,1010
626
+ 20200605,00:00,06:00,18,18,Overcast.,11,200,78,1010
627
+ 20200605,06:00,12:00,20,19,More clouds than sun.,10,180,71,1011
628
+ 20200605,12:00,18:00,22,21,Partly sunny.,14,210,67,1011
629
+ 20200605,18:00,00:00,20,19,Mostly cloudy.,9,230,76,1011
630
+ 20200606,00:00,06:00,19,18,Mostly cloudy.,10,200,81,1012
631
+ 20200606,06:00,12:00,21,18,Mostly cloudy.,14,290,73,1014
632
+ 20200606,12:00,18:00,22,19,Broken clouds.,17,280,61,1014
633
+ 20200606,18:00,00:00,19,19,Overcast.,6,290,67,1014
634
+ 20200607,00:00,06:00,19,18,Overcast.,5,270,72,1013
635
+ 20200607,06:00,12:00,22,18,Partly sunny.,12,280,67,1014
636
+ 20200607,12:00,18:00,23,22,Scattered clouds.,21,280,59,1013
637
+ 20200607,18:00,00:00,21,18,Scattered clouds.,14,310,69,1013
638
+ 20200608,00:00,06:00,17,15,Clear.,1,350,79,1013
639
+ 20200608,06:00,12:00,24,17,Sunny.,13,180,62,1014
640
+ 20200608,12:00,18:00,27,26,Passing clouds.,31,320,32,1013
641
+ 20200608,18:00,00:00,26,19,Clear.,15,350,42,1014
642
+ 20200609,00:00,06:00,18,17,Clear.,6,340,49,1015
643
+ 20200609,06:00,12:00,34,19,Sunny.,8,310,24,1016
644
+ 20200609,12:00,18:00,32,30,Passing clouds.,28,320,14,1014
645
+ 20200609,18:00,00:00,29,21,Passing clouds.,11,350,31,1014
646
+ 20200610,00:00,06:00,19,16,Passing clouds.,2,80,73,1014
647
+ 20200610,06:00,12:00,32,19,Passing clouds.,5,190,29,1014
648
+ 20200610,12:00,18:00,31,24,Scattered clouds.,14,270,34,1013
649
+ 20200610,18:00,00:00,22,18,Passing clouds.,6,190,82,1014
650
+ 20200611,00:00,06:00,18,16,Passing clouds.,1,160,89,1014
651
+ 20200611,06:00,12:00,22,17,Scattered clouds.,11,200,76,1015
652
+ 20200611,12:00,18:00,23,20,Scattered clouds.,14,210,71,1016
653
+ 20200611,18:00,00:00,21,18,Passing clouds.,7,230,80,1016
654
+ 20200612,00:00,06:00,18,17,Passing clouds.,9,220,78,1017
655
+ 20200612,06:00,12:00,20,17,Scattered clouds.,10,200,71,1018
656
+ 20200612,12:00,18:00,21,20,Scattered clouds.,15,280,62,1017
657
+ 20200612,18:00,00:00,19,18,Passing clouds.,11,320,71,1016
658
+ 20200613,00:00,06:00,18,17,Overcast.,3,280,75,1015
659
+ 20200613,06:00,12:00,22,18,Broken clouds.,8,210,68,1015
660
+ 20200613,12:00,18:00,22,22,Sunny.,17,270,58,1014
661
+ 20200613,18:00,00:00,21,18,Passing clouds.,10,280,70,1013
662
+ 20200614,00:00,06:00,17,17,Overcast.,9,150,75,1012
663
+ 20200614,06:00,12:00,21,18,Passing clouds.,17,160,66,1013
664
+ 20200614,12:00,18:00,22,21,Passing clouds.,14,240,62,1012
665
+ 20200614,18:00,00:00,21,18,Clear.,5,270,76,1012
666
+ 20200615,00:00,06:00,18,18,Passing clouds.,8,170,83,1013
667
+ 20200615,06:00,12:00,21,19,Overcast.,9,210,74,1015
668
+ 20200615,12:00,18:00,22,20,Scattered clouds.,18,210,64,1014
669
+ 20200615,18:00,00:00,19,18,Scattered clouds.,8,220,74,1014
670
+ 20200616,00:00,06:00,18,18,Overcast.,12,150,76,1014
671
+ 20200616,06:00,12:00,20,18,Overcast.,16,170,73,1015
672
+ 20200616,12:00,18:00,22,19,Partly sunny.,14,220,63,1013
673
+ 20200616,18:00,00:00,19,18,Overcast.,11,190,74,1013
674
+ 20200617,00:00,06:00,18,18,Overcast.,14,190,78,1013
675
+ 20200617,06:00,12:00,21,18,Overcast.,15,160,71,1015
676
+ 20200617,12:00,18:00,21,19,Scattered clouds.,16,210,61,1014
677
+ 20200617,18:00,00:00,19,17,Passing clouds.,8,200,71,1014
678
+ 20200618,00:00,06:00,18,17,Overcast.,11,190,72,1014
679
+ 20200618,06:00,12:00,20,18,Overcast.,14,190,62,1015
680
+ 20200618,12:00,18:00,22,20,Passing clouds.,15,210,58,1013
681
+ 20200618,18:00,00:00,19,18,Passing clouds.,7,260,68,1014
682
+ 20200619,00:00,06:00,18,18,Passing clouds.,4,280,66,1013
683
+ 20200619,06:00,12:00,22,19,Overcast.,13,270,60,1014
684
+ 20200619,12:00,18:00,23,21,Scattered clouds.,19,280,59,1014
685
+ 20200619,18:00,00:00,19,19,Overcast.,13,260,71,1014
686
+ 20200620,00:00,06:00,18,18,Overcast.,11,280,77,1015
687
+ 20200620,06:00,12:00,21,18,Overcast.,15,300,75,1016
688
+ 20200620,12:00,18:00,22,21,Overcast.,19,300,64,1015
689
+ 20200620,18:00,00:00,20,19,Overcast.,13,270,72,1016
690
+ 20200621,00:00,06:00,19,19,Overcast.,13,320,75,1014
691
+ 20200621,06:00,12:00,20,19,Overcast.,12,330,74,1015
692
+ 20200621,12:00,18:00,21,20,Partly sunny.,16,270,68,1014
693
+ 20200621,18:00,00:00,19,19,Partly sunny.,8,260,75,1014
694
+ 20200622,00:00,06:00,19,18,Overcast.,4,270,78,1014
695
+ 20200622,06:00,12:00,22,18,Overcast.,10,210,75,1015
696
+ 20200622,12:00,18:00,22,21,Partly sunny.,16,200,65,1014
697
+ 20200622,18:00,00:00,20,19,Overcast.,13,320,76,1014
698
+ 20200623,00:00,06:00,19,19,Low clouds.,11,0,79,1013
699
+ 20200623,06:00,12:00,22,19,Overcast.,14,310,77,1014
700
+ 20200623,12:00,18:00,22,19,Partly sunny.,17,290,69,1013
701
+ 20200623,18:00,00:00,19,18,Overcast.,6,270,79,1012
702
+ 20200624,00:00,06:00,18,18,Low clouds.,4,330,82,1012
703
+ 20200624,06:00,12:00,19,18,Overcast.,6,330,80,1011
704
+ 20200624,12:00,18:00,21,19,Overcast.,14,270,73,1010
705
+ 20200624,18:00,00:00,18,17,Overcast.,6,220,79,1011
706
+ 20200625,00:00,06:00,18,17,Overcast.,8,200,85,1010
707
+ 20200625,06:00,12:00,21,17,Overcast.,8,180,78,1011
708
+ 20200625,12:00,18:00,21,21,Scattered clouds.,14,200,64,1011
709
+ 20200625,18:00,00:00,20,18,Passing clouds.,8,270,73,1011
710
+ 20200626,00:00,06:00,19,18,Passing clouds.,6,270,74,1011
711
+ 20200626,06:00,12:00,23,19,Passing clouds.,11,320,68,1013
712
+ 20200626,12:00,18:00,23,22,Scattered clouds.,17,280,62,1012
713
+ 20200626,18:00,00:00,21,19,Passing clouds.,10,280,76,1012
714
+ 20200627,00:00,06:00,19,19,Overcast.,7,320,77,1012
715
+ 20200627,06:00,12:00,22,19,Overcast.,10,260,71,1013
716
+ 20200627,12:00,18:00,23,20,Partly sunny.,14,240,65,1013
717
+ 20200627,18:00,00:00,20,18,Overcast.,8,150,76,1012
718
+ 20200628,00:00,06:00,18,17,Overcast.,12,150,86,1012
719
+ 20200628,06:00,12:00,20,18,Overcast.,11,170,78,1012
720
+ 20200628,12:00,18:00,22,20,Partly sunny.,15,250,65,1010
721
+ 20200628,18:00,00:00,19,18,Overcast.,11,220,75,1010
722
+ 20200629,00:00,06:00,18,17,Low clouds.,12,230,88,1011
723
+ 20200629,06:00,12:00,20,17,Light rain. Fog.,9,280,81,1012
724
+ 20200629,12:00,18:00,21,19,Partly sunny.,15,250,60,1012
725
+ 20200629,18:00,00:00,19,17,Passing clouds.,6,230,65,1013
726
+ 20200630,00:00,06:00,18,18,Passing clouds.,5,180,66,1013
727
+ 20200630,06:00,12:00,22,18,Overcast.,10,330,62,1014
728
+ 20200630,12:00,18:00,23,21,Scattered clouds.,20,290,59,1013
729
+ 20200630,18:00,00:00,21,20,Overcast.,10,270,71,1012
730
+ 20200701,00:00,06:00,19,19,Overcast.,5,280,71,1012
731
+ 20200701,06:00,12:00,22,19,Overcast.,10,210,70,1013
732
+ 20200701,12:00,18:00,22,21,Broken clouds.,16,260,64,1012
733
+ 20200701,18:00,00:00,20,18,Passing clouds.,7,240,73,1012
734
+ 20200702,00:00,06:00,18,18,Overcast.,5,210,74,1012
735
+ 20200702,06:00,12:00,22,18,Overcast.,9,210,68,1014
736
+ 20200702,12:00,18:00,23,22,Sunny.,17,280,58,1013
737
+ 20200702,18:00,00:00,22,19,Passing clouds.,11,320,72,1014
738
+ 20200703,00:00,06:00,19,18,Passing clouds.,9,10,81,1014
739
+ 20200703,06:00,12:00,24,19,Overcast.,10,0,71,1016
740
+ 20200703,12:00,18:00,24,23,Sunny.,23,320,62,1015
741
+ 20200703,18:00,00:00,22,20,Clear.,14,320,78,1015
742
+ 20200704,00:00,06:00,20,19,Clear.,8,320,84,1014
743
+ 20200704,06:00,12:00,24,20,Passing clouds.,12,300,72,1016
744
+ 20200704,12:00,18:00,25,23,Passing clouds.,16,280,64,1015
745
+ 20200704,18:00,00:00,23,21,Passing clouds.,13,320,78,1014
746
+ 20200705,00:00,06:00,21,19,Clear.,6,0,84,1013
747
+ 20200705,06:00,12:00,27,20,Passing clouds.,10,0,66,1013
748
+ 20200705,12:00,18:00,27,24,Passing clouds.,13,280,54,1012
749
+ 20200705,18:00,00:00,23,19,Passing clouds.,5,280,78,1011
750
+ 20200706,00:00,06:00,19,18,Fog.,5,160,90,1010
751
+ 20200706,06:00,12:00,22,19,Passing clouds.,7,170,82,1012
752
+ 20200706,12:00,18:00,24,23,Sunny.,13,200,71,1011
753
+ 20200706,18:00,00:00,22,19,Fog.,5,200,83,1011
754
+ 20200707,00:00,06:00,20,19,Passing clouds.,4,170,81,1011
755
+ 20200707,06:00,12:00,22,20,Overcast.,10,180,72,1012
756
+ 20200707,12:00,18:00,23,22,Passing clouds.,14,210,67,1011
757
+ 20200707,18:00,00:00,22,19,Passing clouds.,6,270,77,1011
758
+ 20200708,00:00,06:00,20,19,Overcast.,2,190,78,1011
759
+ 20200708,06:00,12:00,22,19,Overcast.,9,210,70,1012
760
+ 20200708,12:00,18:00,22,21,Scattered clouds.,15,200,64,1012
761
+ 20200708,18:00,00:00,20,18,Passing clouds.,5,230,76,1012
762
+ 20200709,00:00,06:00,18,18,Passing clouds.,3,180,78,1012
763
+ 20200709,06:00,12:00,22,18,Passing clouds.,10,0,70,1012
764
+ 20200709,12:00,18:00,23,22,Passing clouds.,14,270,62,1012
765
+ 20200709,18:00,00:00,22,19,Passing clouds.,7,260,75,1013
766
+ 20200710,00:00,06:00,20,19,Passing clouds.,1,0,80,1014
767
+ 20200710,06:00,12:00,25,20,Scattered clouds.,9,0,70,1015
768
+ 20200710,12:00,18:00,26,25,Scattered clouds.,18,300,63,1014
769
+ 20200710,18:00,00:00,24,22,Sunny.,14,310,78,1014
770
+ 20200711,00:00,06:00,22,21,Clear.,10,10,82,1014
771
+ 20200711,06:00,12:00,27,22,Scattered clouds.,13,320,69,1015
772
+ 20200711,12:00,18:00,27,25,Broken clouds.,19,290,64,1014
773
+ 20200711,18:00,00:00,26,21,Haze.,6,270,74,1014
774
+ 20200712,00:00,06:00,22,20,Mild.,2,300,87,1013
775
+ 20200712,06:00,12:00,29,22,Scattered clouds.,9,330,63,1013
776
+ 20200712,12:00,18:00,28,25,Passing clouds.,14,310,60,1011
777
+ 20200712,18:00,00:00,24,21,Passing clouds.,7,260,78,1011
778
+ 20200713,00:00,06:00,22,20,Broken clouds.,11,160,84,1012
779
+ 20200713,06:00,12:00,23,21,Scattered clouds.,12,180,78,1013
780
+ 20200713,12:00,18:00,24,22,Scattered clouds.,14,250,69,1013
781
+ 20200713,18:00,00:00,22,20,Passing clouds.,5,240,75,1013
782
+ 20200714,00:00,06:00,21,21,Passing clouds.,6,260,76,1014
783
+ 20200714,06:00,12:00,24,21,Broken clouds.,13,280,69,1015
784
+ 20200714,12:00,18:00,24,22,Scattered clouds.,17,260,63,1014
785
+ 20200714,18:00,00:00,21,20,Passing clouds.,8,280,71,1014
786
+ 20200715,00:00,06:00,21,20,Passing clouds.,8,260,70,1014
787
+ 20200715,06:00,12:00,23,20,Passing clouds.,12,270,63,1014
788
+ 20200715,12:00,18:00,24,22,Scattered clouds.,18,280,61,1014
789
+ 20200715,18:00,00:00,22,21,Passing clouds.,14,310,70,1013
790
+ 20200716,00:00,06:00,21,21,Passing clouds.,6,290,72,1012
791
+ 20200716,06:00,12:00,24,21,Partly sunny.,12,280,66,1013
792
+ 20200716,12:00,18:00,24,23,Scattered clouds.,18,280,60,1013
793
+ 20200716,18:00,00:00,22,21,Passing clouds.,11,310,69,1013
794
+ 20200717,00:00,06:00,21,21,Passing clouds.,8,350,71,1014
795
+ 20200717,06:00,12:00,25,21,Overcast.,11,180,66,1015
796
+ 20200717,12:00,18:00,26,23,Passing clouds.,22,300,60,1014
797
+ 20200717,18:00,00:00,23,21,Passing clouds.,16,340,72,1014
798
+ 20200718,00:00,06:00,21,21,Mild.,13,330,76,1014
799
+ 20200718,06:00,12:00,24,21,Partly sunny.,15,310,68,1016
800
+ 20200718,12:00,18:00,26,24,Passing clouds.,25,310,60,1014
801
+ 20200718,18:00,00:00,23,22,Passing clouds.,18,330,74,1014
802
+ 20200719,00:00,06:00,21,21,Mild.,17,330,78,1013
803
+ 20200719,06:00,12:00,23,20,Overcast.,20,320,76,1015
804
+ 20200719,12:00,18:00,24,23,Passing clouds.,25,310,64,1014
805
+ 20200719,18:00,00:00,22,20,Passing clouds.,19,330,79,1013
806
+ 20200720,00:00,06:00,21,20,Passing clouds.,10,340,77,1014
807
+ 20200720,06:00,12:00,23,20,Passing clouds.,14,270,69,1015
808
+ 20200720,12:00,18:00,23,22,Passing clouds.,19,290,62,1013
809
+ 20200720,18:00,00:00,21,19,Passing clouds.,14,310,75,1012
810
+ 20200721,00:00,06:00,20,19,Passing clouds.,5,260,76,1011
811
+ 20200721,06:00,12:00,23,19,Overcast.,12,270,70,1012
812
+ 20200721,12:00,18:00,24,22,Passing clouds.,18,280,64,1011
813
+ 20200721,18:00,00:00,21,19,Passing clouds.,8,300,74,1011
814
+ 20200722,00:00,06:00,20,19,Overcast.,8,260,79,1011
815
+ 20200722,06:00,12:00,21,19,Overcast.,11,260,77,1012
816
+ 20200722,12:00,18:00,23,21,Partly sunny.,19,270,63,1012
817
+ 20200722,18:00,00:00,20,19,Overcast.,10,260,71,1012
818
+ 20200723,00:00,06:00,19,18,Overcast.,6,210,72,1012
819
+ 20200723,06:00,12:00,22,19,Overcast.,9,230,62,1014
820
+ 20200723,12:00,18:00,23,22,Passing clouds.,17,290,56,1012
821
+ 20200723,18:00,00:00,21,18,Passing clouds.,8,300,71,1012
822
+ 20200724,00:00,06:00,19,18,Passing clouds.,5,160,75,1012
823
+ 20200724,06:00,12:00,23,19,Partly sunny.,11,210,66,1014
824
+ 20200724,12:00,18:00,23,23,Passing clouds.,15,220,58,1013
825
+ 20200724,18:00,00:00,22,19,Passing clouds.,8,250,71,1013
826
+ 20200725,00:00,06:00,20,20,Mild.,8,250,71,1013
827
+ 20200725,06:00,12:00,24,20,Passing clouds.,12,260,64,1014
828
+ 20200725,12:00,18:00,24,22,Passing clouds.,17,270,60,1013
829
+ 20200725,18:00,00:00,22,21,Passing clouds.,11,310,72,1013
830
+ 20200726,00:00,06:00,21,21,Mild.,11,0,76,1013
831
+ 20200726,06:00,12:00,24,21,Passing clouds.,15,310,70,1013
832
+ 20200726,12:00,18:00,24,23,Scattered clouds.,17,270,64,1013
833
+ 20200726,18:00,00:00,21,20,Passing clouds.,11,310,77,1013
834
+ 20200727,00:00,06:00,21,20,Low clouds.,11,350,80,1012
835
+ 20200727,06:00,12:00,23,21,Overcast.,12,0,73,1014
836
+ 20200727,12:00,18:00,24,22,Passing clouds.,23,310,63,1012
837
+ 20200727,18:00,00:00,21,20,Passing clouds.,15,320,74,1012
838
+ 20200728,00:00,06:00,20,19,Passing clouds.,9,340,77,1012
839
+ 20200728,06:00,12:00,22,19,Overcast.,13,310,73,1013
840
+ 20200728,12:00,18:00,23,21,Scattered clouds.,21,300,64,1012
841
+ 20200728,18:00,00:00,20,19,Passing clouds.,15,310,76,1011
842
+ 20200729,00:00,06:00,19,19,Overcast.,10,340,79,1012
843
+ 20200729,06:00,12:00,22,19,Overcast.,15,340,74,1013
844
+ 20200729,12:00,18:00,23,22,Scattered clouds.,22,300,64,1012
845
+ 20200729,18:00,00:00,21,21,Passing clouds.,17,330,78,1012
846
+ 20200730,00:00,06:00,21,19,Low clouds.,17,340,82,1013
847
+ 20200730,06:00,12:00,23,19,Fog.,21,330,76,1014
848
+ 20200730,12:00,18:00,23,23,Scattered clouds.,27,320,67,1013
849
+ 20200730,18:00,00:00,22,21,Passing clouds.,15,340,78,1012
850
+ 20200731,00:00,06:00,21,20,Passing clouds.,13,340,80,1012
851
+ 20200731,06:00,12:00,26,20,Passing clouds.,17,310,67,1013
852
+ 20200731,12:00,18:00,26,24,Scattered clouds.,23,310,64,1012
853
+ 20200731,18:00,00:00,23,21,Passing clouds.,16,320,77,1011
854
+ 20200801,00:00,06:00,22,21,Mild.,12,340,76,1011
855
+ 20200801,06:00,12:00,21,18,Low clouds.,13,170,80,1014
856
+ 20200801,12:00,18:00,22,21,Partly sunny.,11,210,77,1014
857
+ 20200801,18:00,00:00,19,17,Fog.,3,170,88,1013
858
+ 20200802,00:00,06:00,19,16,Fog.,4,130,88,1014
859
+ 20200802,06:00,12:00,19,18,Fog.,7,170,88,1015
860
+ 20200802,12:00,18:00,22,21,Partly sunny.,11,180,80,1015
861
+ 20200802,18:00,00:00,21,19,Passing clouds.,4,200,82,1014
862
+ 20200803,00:00,06:00,19,19,Fog.,10,290,86,1013
863
+ 20200803,06:00,12:00,20,19,Partly sunny.,8,170,85,1014
864
+ 20200803,12:00,18:00,22,21,Partly sunny.,12,160,74,1014
865
+ 20200803,18:00,00:00,21,19,Passing clouds.,6,210,82,1014
866
+ 20200804,00:00,06:00,18,18,Drizzle. Fog.,11,180,90,1014
867
+ 20200804,06:00,12:00,21,18,Drizzle. Fog.,10,190,87,1015
868
+ 20200804,12:00,18:00,22,22,Broken clouds.,12,210,70,1015
869
+ 20200804,18:00,00:00,20,20,Passing clouds.,9,300,76,1014
870
+ 20200805,00:00,06:00,19,18,Passing clouds.,3,270,75,1014
871
+ 20200805,06:00,12:00,21,19,Partly sunny.,9,190,69,1014
872
+ 20200805,12:00,18:00,22,21,Scattered clouds.,14,210,65,1014
873
+ 20200805,18:00,00:00,20,19,Passing clouds.,7,300,72,1013
874
+ 20200806,00:00,06:00,19,19,Overcast.,2,200,73,1013
875
+ 20200806,06:00,12:00,22,19,Passing clouds.,13,210,65,1014
876
+ 20200806,12:00,18:00,22,22,Passing clouds.,16,270,60,1013
877
+ 20200806,18:00,00:00,20,19,Passing clouds.,7,280,72,1012
878
+ 20200807,00:00,06:00,19,18,Passing clouds.,4,350,74,1012
879
+ 20200807,06:00,12:00,24,19,Passing clouds.,8,300,62,1014
880
+ 20200807,12:00,18:00,25,22,Passing clouds.,20,300,59,1013
881
+ 20200807,18:00,00:00,21,19,Passing clouds.,13,320,76,1014
882
+ 20200808,00:00,06:00,20,19,Mild.,5,10,76,1014
883
+ 20200808,06:00,12:00,24,20,Passing clouds.,9,0,66,1016
884
+ 20200808,12:00,18:00,25,22,Passing clouds.,21,300,61,1014
885
+ 20200808,18:00,00:00,22,20,Passing clouds.,14,310,75,1014
886
+ 20200809,00:00,06:00,21,20,Mild.,11,320,76,1014
887
+ 20200809,06:00,12:00,24,21,Passing clouds.,16,310,67,1015
888
+ 20200809,12:00,18:00,24,23,Passing clouds.,21,310,62,1013
889
+ 20200809,18:00,00:00,22,19,Passing clouds.,13,320,75,1013
890
+ 20200810,00:00,06:00,20,19,Overcast.,8,310,77,1013
891
+ 20200810,06:00,12:00,23,19,Partly sunny.,15,310,70,1014
892
+ 20200810,12:00,18:00,24,23,Passing clouds.,23,320,61,1013
893
+ 20200810,18:00,00:00,22,20,Passing clouds.,15,330,74,1013
894
+ 20200811,00:00,06:00,21,20,Passing clouds.,13,320,77,1012
895
+ 20200811,06:00,12:00,23,20,Partly sunny.,19,330,71,1013
896
+ 20200811,12:00,18:00,24,23,Passing clouds.,22,310,62,1012
897
+ 20200811,18:00,00:00,22,19,Passing clouds.,15,330,78,1012
898
+ 20200812,00:00,06:00,20,19,Passing clouds.,12,350,80,1012
899
+ 20200812,06:00,12:00,24,19,Partly sunny.,14,310,74,1013
900
+ 20200812,12:00,18:00,25,24,Scattered clouds.,15,300,61,1011
901
+ 20200812,18:00,00:00,23,22,Passing clouds.,11,320,70,1012
902
+ 20200813,00:00,06:00,22,22,Passing clouds.,9,330,77,1012
903
+ 20200813,06:00,12:00,27,22,Partly sunny.,14,330,62,1012
904
+ 20200813,12:00,18:00,29,26,Broken clouds.,20,320,47,1011
905
+ 20200813,18:00,00:00,27,23,Passing clouds.,10,300,61,1011
906
+ 20200814,00:00,06:00,22,20,Passing clouds.,2,320,81,1010
907
+ 20200814,06:00,12:00,29,22,Passing clouds.,7,220,58,1012
908
+ 20200814,12:00,18:00,30,28,Scattered clouds.,15,300,47,1010
909
+ 20200814,18:00,00:00,27,24,Passing clouds.,15,310,64,1010
910
+ 20200815,00:00,06:00,24,23,Mild.,9,330,72,1009
911
+ 20200815,06:00,12:00,28,24,Passing clouds.,11,320,62,1010
912
+ 20200815,12:00,18:00,30,26,Scattered clouds.,14,190,60,1010
913
+ 20200815,18:00,00:00,25,23,Haze.,4,210,80,1010
914
+ 20200816,00:00,06:00,23,22,Fog.,4,170,84,1011
915
+ 20200816,06:00,12:00,24,22,Scattered clouds.,12,180,78,1013
916
+ 20200816,12:00,18:00,26,23,Partly sunny.,15,190,72,1012
917
+ 20200816,18:00,00:00,24,22,Haze.,6,200,80,1012
918
+ 20200817,00:00,06:00,22,22,Fog.,4,190,85,1012
919
+ 20200817,06:00,12:00,24,22,Broken clouds.,9,210,80,1013
920
+ 20200817,12:00,18:00,28,26,Scattered clouds.,12,290,64,1011
921
+ 20200817,18:00,00:00,24,23,Passing clouds.,4,210,78,1013
922
+ 20200818,00:00,06:00,24,23,Passing clouds.,7,310,82,1012
923
+ 20200818,06:00,12:00,29,23,Scattered clouds.,12,320,72,1012
924
+ 20200818,12:00,18:00,26,24,Broken clouds.,15,200,73,1011
925
+ 20200818,18:00,00:00,24,23,Passing clouds.,3,210,83,1011
926
+ 20200819,00:00,06:00,23,23,Passing clouds.,5,180,85,1010
927
+ 20200819,06:00,12:00,27,23,Haze.,8,200,78,1011
928
+ 20200819,12:00,18:00,26,25,Partly sunny.,14,200,74,1009
929
+ 20200819,18:00,00:00,24,22,Passing clouds.,8,190,83,1010
930
+ 20200820,00:00,06:00,23,23,Passing clouds.,3,320,83,1008
931
+ 20200820,06:00,12:00,27,23,Passing clouds.,7,0,75,1008
932
+ 20200820,12:00,18:00,29,24,Scattered clouds.,18,200,71,1007
933
+ 20200820,18:00,00:00,24,22,Passing clouds.,7,180,81,1008
934
+ 20200821,00:00,06:00,23,22,Passing clouds.,2,270,84,1007
935
+ 20200821,06:00,12:00,24,23,Broken clouds.,11,180,79,1009
936
+ 20200821,12:00,18:00,28,25,Broken clouds.,11,210,68,1009
937
+ 20200821,18:00,00:00,26,24,Passing clouds.,5,220,72,1009
938
+ 20200822,00:00,06:00,26,24,Clear.,3,350,77,1009
939
+ 20200822,06:00,12:00,30,24,Scattered clouds.,5,210,65,1011
940
+ 20200822,12:00,18:00,28,26,Passing clouds.,15,170,72,1011
941
+ 20200822,18:00,00:00,25,24,Clear.,4,170,82,1012
942
+ 20200823,00:00,06:00,24,24,Clear.,1,300,79,1011
943
+ 20200823,06:00,12:00,28,24,Scattered clouds.,7,280,71,1012
944
+ 20200823,12:00,18:00,29,27,Scattered clouds.,16,290,65,1010
945
+ 20200823,18:00,00:00,26,26,Overcast.,13,310,77,1011
946
+ 20200824,00:00,06:00,25,24,Overcast.,15,320,78,1010
947
+ 20200824,06:00,12:00,27,24,Overcast.,15,310,78,1011
948
+ 20200824,12:00,18:00,28,24,Broken clouds.,23,300,69,1010
949
+ 20200824,18:00,00:00,24,23,Passing clouds.,15,340,77,1010
950
+ 20200825,00:00,06:00,24,23,Passing clouds.,16,340,80,1010
951
+ 20200825,06:00,12:00,27,23,Overcast.,19,310,76,1010
952
+ 20200825,12:00,18:00,27,25,Passing clouds.,23,320,67,1009
953
+ 20200825,18:00,00:00,24,23,Passing clouds.,16,330,80,1008
954
+ 20200826,00:00,06:00,23,23,Passing clouds.,17,340,80,1008
955
+ 20200826,06:00,12:00,26,22,Low clouds.,21,330,76,1008
956
+ 20200826,12:00,18:00,26,23,Scattered clouds.,23,320,70,1007
957
+ 20200826,18:00,00:00,23,22,Passing clouds.,17,330,82,1006
958
+ 20200827,00:00,06:00,22,22,Low clouds.,15,330,83,1006
959
+ 20200827,06:00,12:00,27,22,Passing clouds.,14,350,75,1007
960
+ 20200827,12:00,18:00,27,26,Passing clouds.,22,320,64,1006
961
+ 20200827,18:00,00:00,24,23,Passing clouds.,15,310,78,1007
962
+ 20200828,00:00,06:00,22,22,Passing clouds.,14,330,80,1008
963
+ 20200828,06:00,12:00,26,22,Passing clouds.,19,330,72,1009
964
+ 20200828,12:00,18:00,26,23,Scattered clouds.,23,320,66,1009
965
+ 20200828,18:00,00:00,22,21,Passing clouds.,14,320,77,1010
966
+ 20200829,00:00,06:00,21,21,Overcast.,9,310,75,1011
967
+ 20200829,06:00,12:00,24,21,Partly sunny.,14,320,67,1012
968
+ 20200829,12:00,18:00,26,23,Passing clouds.,17,280,60,1011
969
+ 20200829,18:00,00:00,22,21,Passing clouds.,10,320,71,1012
970
+ 20200830,00:00,06:00,21,21,Overcast.,9,300,70,1011
971
+ 20200830,06:00,12:00,25,21,Passing clouds.,12,310,62,1011
972
+ 20200830,12:00,18:00,25,23,Passing clouds.,19,290,58,1010
973
+ 20200830,18:00,00:00,22,19,Passing clouds.,4,290,73,1011
974
+ 20200831,00:00,06:00,21,19,Overcast.,6,300,74,1011
975
+ 20200831,06:00,12:00,24,21,Partly sunny.,11,250,68,1011
976
+ 20200831,12:00,18:00,24,23,Passing clouds.,17,280,61,1011
977
+ 20200831,18:00,00:00,22,21,Passing clouds.,9,270,70,1011
978
+ 20200901,00:00,06:00,22,21,Overcast.,7,300,69,1012
979
+ 20200901,06:00,12:00,26,22,Partly sunny.,13,290,63,1014
980
+ 20200901,12:00,18:00,26,23,Passing clouds.,20,310,57,1014
981
+ 20200901,18:00,00:00,22,21,Passing clouds.,13,320,70,1015
982
+ 20200902,00:00,06:00,22,21,Passing clouds.,10,330,72,1015
983
+ 20200902,06:00,12:00,25,22,Passing clouds.,17,300,64,1016
984
+ 20200902,12:00,18:00,25,23,Scattered clouds.,21,300,62,1014
985
+ 20200902,18:00,00:00,22,20,Passing clouds.,6,310,74,1015
986
+ 20200903,00:00,06:00,21,19,Overcast.,5,190,77,1014
987
+ 20200903,06:00,12:00,25,21,Passing clouds.,11,290,69,1014
988
+ 20200903,12:00,18:00,26,24,Passing clouds.,17,300,61,1012
989
+ 20200903,18:00,00:00,23,22,Passing clouds.,7,300,76,1012
990
+ 20200904,00:00,06:00,22,21,Passing clouds.,2,250,79,1012
991
+ 20200904,06:00,12:00,26,22,Passing clouds.,10,270,72,1012
992
+ 20200904,12:00,18:00,27,26,Passing clouds.,16,300,61,1011
993
+ 20200904,18:00,00:00,24,23,Clear.,15,320,76,1011
994
+ 20200905,00:00,06:00,23,23,Clear.,12,350,79,1011
995
+ 20200905,06:00,12:00,31,23,Passing clouds.,17,340,59,1012
996
+ 20200905,12:00,18:00,32,28,Scattered clouds.,26,340,46,1009
997
+ 20200905,18:00,00:00,28,22,Haze.,4,300,66,1010
998
+ 20200906,00:00,06:00,26,24,Clear.,7,10,66,1009
999
+ 20200906,06:00,12:00,29,20,Scattered clouds.,6,190,67,1011
1000
+ 20200906,12:00,18:00,30,26,Scattered clouds.,12,150,67,1010
1001
+ 20200906,18:00,00:00,25,22,Haze.,7,160,83,1010
1002
+ 20200907,00:00,06:00,22,20,Fog.,7,140,88,1009
1003
+ 20200907,06:00,12:00,22,21,Fog.,23,180,86,1009
1004
+ 20200907,12:00,18:00,23,23,Low clouds.,14,210,78,1007
1005
+ 20200907,18:00,00:00,22,21,Passing clouds.,7,200,86,1006
1006
+ 20200908,00:00,06:00,21,21,Low clouds.,9,170,88,1005
1007
+ 20200908,06:00,12:00,23,21,Overcast.,10,160,81,1006
1008
+ 20200908,12:00,18:00,24,23,Broken clouds.,14,190,73,1005
1009
+ 20200908,18:00,00:00,22,21,Clear.,0,0,84,1006
1010
+ 20200909,00:00,06:00,21,19,Passing clouds.,1,130,90,1007
1011
+ 20200909,06:00,12:00,26,19,Scattered clouds.,8,320,78,1010
1012
+ 20200909,12:00,18:00,27,24,Partly sunny.,23,320,66,1009
1013
+ 20200909,18:00,00:00,22,21,Passing clouds.,9,340,82,1012
1014
+ 20200910,00:00,06:00,20,19,Passing clouds.,8,10,89,1013
1015
+ 20200910,06:00,12:00,26,19,Partly sunny.,8,10,71,1015
1016
+ 20200910,12:00,18:00,26,23,Partly sunny.,23,330,67,1014
1017
+ 20200910,18:00,00:00,23,21,Passing clouds.,9,350,80,1014
1018
+ 20200911,00:00,06:00,21,18,Fog.,7,0,88,1014
1019
+ 20200911,06:00,12:00,26,18,Partly sunny.,7,330,71,1015
1020
+ 20200911,12:00,18:00,26,24,Partly sunny.,20,320,61,1013
1021
+ 20200911,18:00,00:00,23,20,Fog.,9,340,81,1013
1022
+ 20200912,00:00,06:00,19,17,Fog.,2,350,88,1012
1023
+ 20200912,06:00,12:00,26,17,Partly sunny.,7,300,72,1012
1024
+ 20200912,12:00,18:00,26,24,Partly sunny.,18,310,67,1011
1025
+ 20200912,18:00,00:00,22,21,Fog.,11,320,84,1011
1026
+ 20200913,00:00,06:00,20,18,Fog.,1,300,90,1011
1027
+ 20200913,06:00,12:00,24,19,Fog.,7,10,79,1013
1028
+ 20200913,12:00,18:00,25,23,Partly sunny.,17,320,68,1011
1029
+ 20200913,18:00,00:00,22,21,Passing clouds.,11,10,82,1012
1030
+ 20200914,00:00,06:00,19,18,Fog.,4,330,89,1013
1031
+ 20200914,06:00,12:00,25,18,Partly sunny.,10,310,75,1014
1032
+ 20200914,12:00,18:00,26,24,Partly sunny.,18,310,61,1013
1033
+ 20200914,18:00,00:00,23,21,Fog.,11,340,84,1015
1034
+ 20200915,00:00,06:00,20,19,Fog.,6,340,88,1016
1035
+ 20200915,06:00,12:00,27,19,Partly sunny.,8,10,71,1017
1036
+ 20200915,12:00,18:00,27,26,Partly sunny.,25,320,58,1015
1037
+ 20200915,18:00,00:00,27,22,Haze.,14,340,50,1014
1038
+ 20200916,00:00,06:00,21,17,Passing clouds.,5,350,72,1014
1039
+ 20200916,06:00,12:00,27,19,Passing clouds.,11,330,58,1015
1040
+ 20200916,12:00,18:00,29,26,Passing clouds.,22,320,48,1013
1041
+ 20200916,18:00,00:00,26,22,Passing clouds.,9,340,57,1013
1042
+ 20200917,00:00,06:00,21,19,Passing clouds.,6,300,64,1012
1043
+ 20200917,06:00,12:00,31,19,Scattered clouds.,11,310,47,1013
1044
+ 20200917,12:00,18:00,31,27,Scattered clouds.,23,320,44,1011
1045
+ 20200917,18:00,00:00,26,22,Passing clouds.,11,330,51,1011
1046
+ 20200918,00:00,06:00,22,19,Passing clouds.,7,10,76,1011
1047
+ 20200918,06:00,12:00,31,18,Passing clouds.,8,310,52,1011
1048
+ 20200918,12:00,18:00,29,26,Scattered clouds.,24,320,54,1010
1049
+ 20200918,18:00,00:00,26,23,Passing clouds.,10,330,55,1010
1050
+ 20200919,00:00,06:00,21,20,Clear.,4,260,79,1011
1051
+ 20200919,06:00,12:00,27,19,Passing clouds.,11,310,66,1011
1052
+ 20200919,12:00,18:00,27,23,Sunny.,21,310,64,1010
1053
+ 20200919,18:00,00:00,23,21,Passing clouds.,11,310,80,1010
1054
+ 20200920,00:00,06:00,21,19,Overcast.,3,280,82,1011
1055
+ 20200920,06:00,12:00,24,21,Passing clouds.,8,0,70,1012
1056
+ 20200920,12:00,18:00,25,23,Passing clouds.,14,260,63,1012
1057
+ 20200920,18:00,00:00,21,19,Passing clouds.,3,270,80,1012
1058
+ 20200921,00:00,06:00,20,19,Overcast.,3,220,81,1012
1059
+ 20200921,06:00,12:00,24,20,Overcast.,9,180,73,1014
1060
+ 20200921,12:00,18:00,25,23,Passing clouds.,19,300,62,1013
1061
+ 20200921,18:00,00:00,22,21,Passing clouds.,10,320,77,1014
1062
+ 20200922,00:00,06:00,21,21,Passing clouds.,7,310,78,1015
1063
+ 20200922,06:00,12:00,25,21,Scattered clouds.,10,310,70,1016
1064
+ 20200922,12:00,18:00,26,23,Passing clouds.,17,300,62,1015
1065
+ 20200922,18:00,00:00,22,21,Passing clouds.,13,320,77,1016
1066
+ 20200923,00:00,06:00,21,19,Passing clouds.,6,340,84,1016
1067
+ 20200923,06:00,12:00,28,19,Passing clouds.,9,340,73,1016
1068
+ 20200923,12:00,18:00,28,24,Passing clouds.,18,320,60,1015
1069
+ 20200923,18:00,00:00,23,21,Passing clouds.,12,320,81,1014
1070
+ 20200924,00:00,06:00,21,19,Passing clouds.,5,20,85,1013
1071
+ 20200924,06:00,12:00,27,18,Passing clouds.,3,190,71,1014
1072
+ 20200924,12:00,18:00,27,23,Passing clouds.,13,270,67,1012
1073
+ 20200924,18:00,00:00,21,20,Passing clouds.,8,200,84,1012
1074
+ 20200925,00:00,06:00,19,18,Fog.,11,180,86,1012
1075
+ 20200925,06:00,12:00,23,19,Overcast.,11,200,76,1014
1076
+ 20200925,12:00,18:00,23,22,Passing clouds.,12,190,69,1013
1077
+ 20200925,18:00,00:00,21,19,Passing clouds.,2,260,81,1014
1078
+ 20200926,00:00,06:00,21,19,Overcast.,2,200,80,1014
1079
+ 20200926,06:00,12:00,22,19,Overcast.,9,150,74,1014
1080
+ 20200926,12:00,18:00,23,21,Scattered clouds.,12,210,69,1012
1081
+ 20200926,18:00,00:00,21,19,Passing clouds.,5,150,78,1012
1082
+ 20200927,00:00,06:00,19,19,Overcast.,5,200,82,1011
1083
+ 20200927,06:00,12:00,22,19,Fog.,7,190,75,1012
1084
+ 20200927,12:00,18:00,23,22,Partly sunny.,13,200,67,1011
1085
+ 20200927,18:00,00:00,21,19,Passing clouds.,2,190,78,1012
1086
+ 20200928,00:00,06:00,20,19,Clear.,9,10,82,1011
1087
+ 20200928,06:00,12:00,24,19,Passing clouds.,11,330,73,1012
1088
+ 20200928,12:00,18:00,26,24,Passing clouds.,15,310,66,1012
1089
+ 20200928,18:00,00:00,23,22,Passing clouds.,12,330,81,1014
1090
+ 20200929,00:00,06:00,21,20,Fog.,13,10,86,1014
1091
+ 20200929,06:00,12:00,24,21,Passing clouds.,17,340,75,1014
1092
+ 20200929,12:00,18:00,31,24,Haze.,26,330,58,1012
1093
+ 20200929,18:00,00:00,23,22,Passing clouds.,12,300,76,1013
1094
+ 20200930,00:00,06:00,22,21,Passing clouds.,8,0,77,1013
1095
+ 20200930,06:00,12:00,33,20,Sunny.,9,350,44,1013
1096
+ 20200930,12:00,18:00,34,28,Passing clouds.,18,330,34,1011
1097
+ 20200930,18:00,00:00,27,21,Passing clouds.,4,310,68,1012
1098
+ 20201001,00:00,06:00,23,21,Clear.,5,10,67,1012
1099
+ 20201001,06:00,12:00,33,19,Sunny.,4,310,39,1013
1100
+ 20201001,12:00,18:00,36,28,Sunny.,8,280,29,1011
1101
+ 20201001,18:00,00:00,26,20,Clear.,4,170,80,1012
1102
+ 20201002,00:00,06:00,21,19,Fog.,1,170,88,1012
1103
+ 20201002,06:00,12:00,27,20,Sunny.,5,200,66,1012
1104
+ 20201002,12:00,18:00,28,25,Sunny.,12,170,64,1009
1105
+ 20201002,18:00,00:00,23,21,Fog.,4,130,88,1010
1106
+ 20201003,00:00,06:00,22,19,Fog.,2,170,86,1010
1107
+ 20201003,06:00,12:00,27,19,Passing clouds.,5,160,72,1011
1108
+ 20201003,12:00,18:00,31,23,Passing clouds.,9,170,55,1010
1109
+ 20201003,18:00,00:00,22,21,Clear.,0,0,84,1011
1110
+ 20201004,00:00,06:00,19,18,Clear.,0,0,83,1012
1111
+ 20201004,06:00,12:00,31,18,Sunny.,2,190,51,1013
1112
+ 20201004,12:00,18:00,31,26,Scattered clouds.,9,320,46,1013
1113
+ 20201004,18:00,00:00,23,22,Passing clouds.,4,140,71,1014
1114
+ 20201005,00:00,06:00,22,19,Clear.,3,350,63,1014
1115
+ 20201005,06:00,12:00,29,21,Partly sunny.,10,20,48,1016
1116
+ 20201005,12:00,18:00,29,25,Scattered clouds.,15,340,53,1014
1117
+ 20201005,18:00,00:00,23,21,Clear.,11,330,82,1014
1118
+ 20201006,00:00,06:00,21,19,Fog.,11,350,87,1014
1119
+ 20201006,06:00,12:00,26,20,Fog.,8,320,74,1015
1120
+ 20201006,12:00,18:00,27,24,Partly sunny.,15,320,58,1013
1121
+ 20201006,18:00,00:00,23,22,Passing clouds.,11,330,84,1013
1122
+ 20201007,00:00,06:00,22,19,Fog.,5,10,86,1012
1123
+ 20201007,06:00,12:00,23,20,Fog.,6,190,76,1013
1124
+ 20201007,12:00,18:00,24,22,Passing clouds.,14,250,66,1012
1125
+ 20201007,18:00,00:00,21,21,Overcast.,7,260,72,1013
1126
+ 20201008,00:00,06:00,21,20,Passing clouds.,8,210,69,1013
1127
+ 20201008,06:00,12:00,23,20,Partly sunny.,13,220,63,1015
1128
+ 20201008,12:00,18:00,24,22,Scattered clouds.,13,270,60,1013
1129
+ 20201008,18:00,00:00,21,19,Passing clouds.,5,280,68,1013
1130
+ 20201009,00:00,06:00,21,19,Passing clouds.,5,70,66,1013
1131
+ 20201009,06:00,12:00,23,21,Partly sunny.,10,140,62,1014
1132
+ 20201009,12:00,18:00,24,22,Scattered clouds.,16,270,63,1013
1133
+ 20201009,18:00,00:00,22,21,Passing clouds.,6,300,68,1014
1134
+ 20201010,00:00,06:00,22,21,Overcast.,6,280,68,1013
1135
+ 20201010,06:00,12:00,23,21,Partly sunny.,9,270,65,1015
1136
+ 20201010,12:00,18:00,24,22,Scattered clouds.,18,280,58,1014
1137
+ 20201010,18:00,00:00,22,21,Passing clouds.,7,340,71,1014
1138
+ 20201011,00:00,06:00,21,20,Passing clouds.,4,20,75,1014
1139
+ 20201011,06:00,12:00,24,20,Overcast.,8,310,67,1015
1140
+ 20201011,12:00,18:00,25,22,Passing clouds.,19,300,61,1013
1141
+ 20201011,18:00,00:00,22,20,Clear.,13,0,76,1014
1142
+ 20201012,00:00,06:00,20,18,Clear.,4,20,84,1014
1143
+ 20201012,06:00,12:00,28,18,Sunny.,9,350,65,1015
1144
+ 20201012,12:00,18:00,28,26,Sunny.,23,320,53,1012
1145
+ 20201012,18:00,00:00,24,19,Clear.,6,350,73,1014
1146
+ 20201013,00:00,06:00,21,18,Clear.,4,350,84,1014
1147
+ 20201013,06:00,12:00,33,18,Sunny.,5,330,47,1015
1148
+ 20201013,12:00,18:00,32,28,Sunny.,23,330,31,1013
1149
+ 20201013,18:00,00:00,26,20,Clear.,6,330,54,1014
1150
+ 20201014,00:00,06:00,22,17,Clear.,5,0,72,1014
1151
+ 20201014,06:00,12:00,26,19,Passing clouds.,11,170,78,1015
1152
+ 20201014,12:00,18:00,29,24,Sunny.,7,200,49,1013
1153
+ 20201014,18:00,00:00,21,19,Passing clouds.,3,150,88,1014
1154
+ 20201015,00:00,06:00,19,18,Passing clouds.,2,320,88,1013
1155
+ 20201015,06:00,12:00,24,18,Passing clouds.,5,180,70,1014
1156
+ 20201015,12:00,18:00,29,23,Scattered clouds.,10,280,68,1012
1157
+ 20201015,18:00,00:00,23,19,Fog.,4,330,85,1013
1158
+ 20201016,00:00,06:00,19,18,Fog.,2,140,88,1013
1159
+ 20201016,06:00,12:00,27,19,Fog.,7,350,76,1013
1160
+ 20201016,12:00,18:00,28,24,Scattered clouds.,16,330,52,1011
1161
+ 20201016,18:00,00:00,23,19,Fog.,6,350,84,1011
1162
+ 20201017,00:00,06:00,19,17,Fog.,6,190,91,1012
1163
+ 20201017,06:00,12:00,20,18,Fog.,8,160,90,1014
1164
+ 20201017,12:00,18:00,22,21,Passing clouds.,9,180,82,1013
1165
+ 20201017,18:00,00:00,21,19,Fog.,0,0,89,1014
1166
+ 20201018,00:00,06:00,21,19,Fog.,3,0,86,1014
1167
+ 20201018,06:00,12:00,24,20,Fog.,4,10,80,1016
1168
+ 20201018,12:00,18:00,25,23,Scattered clouds.,12,300,68,1014
1169
+ 20201018,18:00,00:00,22,20,Passing clouds.,6,330,80,1015
1170
+ 20201019,00:00,06:00,21,21,Overcast.,3,0,78,1015
1171
+ 20201019,06:00,12:00,24,20,Scattered clouds.,7,350,68,1015
1172
+ 20201019,12:00,18:00,24,21,Partly sunny.,17,300,66,1013
1173
+ 20201019,18:00,00:00,21,19,Passing clouds.,7,330,80,1013
1174
+ 20201020,00:00,06:00,21,19,Passing clouds.,3,350,81,1012
1175
+ 20201020,06:00,12:00,22,20,Passing clouds.,6,190,73,1012
1176
+ 20201020,12:00,18:00,23,20,Scattered clouds.,14,270,65,1010
1177
+ 20201020,18:00,00:00,20,19,Passing clouds.,3,260,75,1010
1178
+ 20201021,00:00,06:00,20,19,Overcast.,6,170,76,1010
1179
+ 20201021,06:00,12:00,21,19,Overcast.,6,210,71,1011
1180
+ 20201021,12:00,18:00,22,19,Scattered clouds.,13,210,66,1010
1181
+ 20201021,18:00,00:00,19,19,Passing clouds.,6,210,72,1010
1182
+ 20201022,00:00,06:00,19,19,Overcast.,6,200,68,1011
1183
+ 20201022,06:00,12:00,21,19,Overcast.,5,200,63,1012
1184
+ 20201022,12:00,18:00,22,19,Scattered clouds.,12,180,66,1012
1185
+ 20201022,18:00,00:00,20,19,Passing clouds.,4,210,70,1013
1186
+ 20201023,00:00,06:00,20,19,Overcast.,6,200,66,1013
1187
+ 20201023,06:00,12:00,23,19,Broken clouds.,8,190,60,1015
1188
+ 20201023,12:00,18:00,23,21,Partly sunny.,14,280,57,1014
1189
+ 20201023,18:00,00:00,21,20,Overcast.,9,280,65,1015
1190
+ 20201024,00:00,06:00,21,20,Overcast.,2,230,68,1015
1191
+ 20201024,06:00,12:00,22,20,Overcast.,8,290,65,1016
1192
+ 20201024,12:00,18:00,23,21,Broken clouds.,15,280,59,1014
1193
+ 20201024,18:00,00:00,21,20,Mostly cloudy.,13,290,66,1014
1194
+ 20201025,00:00,06:00,21,20,Overcast.,9,270,61,1014
1195
+ 20201025,06:00,12:00,21,19,Partly sunny.,13,260,62,1014
1196
+ 20201025,12:00,18:00,22,21,Broken clouds.,14,190,58,1012
1197
+ 20201025,18:00,00:00,20,19,Overcast.,12,290,60,1012
1198
+ 20201026,00:00,06:00,18,16,Passing clouds.,6,110,74,1013
1199
+ 20201026,06:00,12:00,21,16,Partly sunny.,6,0,62,1016
1200
+ 20201026,12:00,18:00,23,21,Passing clouds.,16,200,38,1015
1201
+ 20201026,18:00,00:00,22,15,Clear.,12,130,33,1016
1202
+ 20201027,00:00,06:00,14,11,Clear.,1,100,28,1017
1203
+ 20201027,06:00,12:00,22,11,Passing clouds.,6,110,24,1017
1204
+ 20201027,12:00,18:00,24,22,Passing clouds.,11,260,33,1016
1205
+ 20201027,18:00,00:00,21,17,Clear.,2,340,58,1018
1206
+ 20201028,00:00,06:00,16,13,Clear.,6,70,42,1018
1207
+ 20201028,06:00,12:00,23,14,Sunny.,5,90,25,1018
1208
+ 20201028,12:00,18:00,24,21,Sunny.,15,270,45,1016
1209
+ 20201028,18:00,00:00,21,17,Clear.,7,350,73,1016
1210
+ 20201029,00:00,06:00,16,13,Clear.,2,330,74,1016
1211
+ 20201029,06:00,12:00,22,14,Sunny.,5,0,56,1017
1212
+ 20201029,12:00,18:00,25,21,Passing clouds.,12,320,52,1014
1213
+ 20201029,18:00,00:00,19,16,Fog.,3,170,85,1015
1214
+ 20201030,00:00,06:00,17,13,Passing clouds.,2,350,86,1015
1215
+ 20201030,06:00,12:00,25,12,Passing clouds.,2,300,53,1016
1216
+ 20201030,12:00,18:00,24,21,Scattered clouds.,12,310,54,1013
1217
+ 20201030,18:00,00:00,18,17,Fog.,2,160,88,1015
1218
+ 20201031,00:00,06:00,18,16,Fog.,3,160,88,1015
1219
+ 20201031,06:00,12:00,24,16,Fog.,4,0,71,1016
1220
+ 20201031,12:00,18:00,26,21,Partly sunny.,10,320,54,1015
1221
+ 20201031,18:00,00:00,21,16,Passing clouds.,2,0,76,1017
1222
+ 20201101,00:00,06:00,17,16,Fog.,2,160,82,1017
1223
+ 20201101,06:00,12:00,27,16,Broken clouds.,8,10,46,1019
1224
+ 20201101,12:00,18:00,27,21,Passing clouds.,10,310,52,1017
1225
+ 20201101,18:00,00:00,19,16,Fog.,1,20,84,1018
1226
+ 20201102,00:00,06:00,17,15,Fog.,1,170,90,1018
1227
+ 20201102,06:00,12:00,22,16,Fog.,5,200,80,1019
1228
+ 20201102,12:00,18:00,22,19,Passing clouds.,10,280,75,1016
1229
+ 20201102,18:00,00:00,19,18,Fog.,4,330,87,1017
1230
+ 20201103,00:00,06:00,18,17,Fog.,0,0,90,1016
1231
+ 20201103,06:00,12:00,23,17,Partly sunny.,9,310,76,1017
1232
+ 20201103,12:00,18:00,23,19,Partly sunny.,13,300,69,1015
1233
+ 20201103,18:00,00:00,19,17,Passing clouds.,2,330,86,1017
1234
+ 20201104,00:00,06:00,18,16,Fog.,3,330,90,1018
1235
+ 20201104,06:00,12:00,23,17,Fog.,10,0,79,1018
1236
+ 20201104,12:00,18:00,23,21,Passing clouds.,19,330,68,1016
1237
+ 20201104,18:00,00:00,19,17,Fog.,5,350,82,1017
1238
+ 20201105,00:00,06:00,17,16,Passing clouds.,6,340,78,1016
1239
+ 20201105,06:00,12:00,31,17,Partly sunny.,6,340,42,1015
1240
+ 20201105,12:00,18:00,29,23,Partly sunny.,16,340,35,1011
1241
+ 20201105,18:00,00:00,20,19,Fog.,11,150,85,1010
1242
+ 20201106,00:00,06:00,19,16,Fog.,6,150,91,1008
1243
+ 20201106,06:00,12:00,21,17,Fog.,11,150,87,1008
1244
+ 20201106,12:00,18:00,21,18,Mostly cloudy.,17,200,72,1006
1245
+ 20201106,18:00,00:00,18,17,Overcast.,25,280,64,1007
1246
+ 20201107,00:00,06:00,16,15,Passing clouds.,19,260,58,1008
1247
+ 20201107,06:00,12:00,19,16,Broken clouds.,25,250,59,1009
1248
+ 20201107,12:00,18:00,18,16,Broken clouds.,25,280,57,1009
1249
+ 20201107,18:00,00:00,16,16,Partly cloudy.,22,280,56,1011
1250
+ 20201108,00:00,06:00,16,14,Passing clouds.,20,290,66,1011
1251
+ 20201108,06:00,12:00,18,14,Broken clouds.,23,290,60,1012
1252
+ 20201108,12:00,18:00,16,14,Light rain. Partly sunny.,27,280,67,1012
1253
+ 20201108,18:00,00:00,15,15,Passing clouds.,29,280,53,1013
1254
+ 20201109,00:00,06:00,15,11,Passing clouds.,13,290,62,1015
1255
+ 20201109,06:00,12:00,17,11,Scattered clouds.,11,90,56,1018
1256
+ 20201109,12:00,18:00,17,14,Scattered clouds.,10,290,45,1019
1257
+ 20201109,18:00,00:00,13,12,Passing clouds.,5,350,60,1021
1258
+ 20201110,00:00,06:00,11,9,Clear.,3,110,68,1020
1259
+ 20201110,06:00,12:00,18,10,Sunny.,6,190,50,1021
1260
+ 20201110,12:00,18:00,19,16,Passing clouds.,22,300,44,1017
1261
+ 20201110,18:00,00:00,15,12,Clear.,3,40,65,1017
1262
+ 20201111,00:00,06:00,11,8,Clear.,2,130,65,1017
1263
+ 20201111,06:00,12:00,19,9,Sunny.,4,170,52,1017
1264
+ 20201111,12:00,18:00,19,16,Sunny.,13,310,52,1015
1265
+ 20201111,18:00,00:00,14,12,Clear.,1,60,74,1016
1266
+ 20201112,00:00,06:00,12,10,Clear.,2,30,69,1016
1267
+ 20201112,06:00,12:00,20,11,Passing clouds.,6,160,51,1017
1268
+ 20201112,12:00,18:00,19,16,Scattered clouds.,16,320,59,1016
1269
+ 20201112,18:00,00:00,16,13,Passing clouds.,5,20,81,1018
1270
+ 20201113,00:00,06:00,12,9,Passing clouds.,2,110,80,1018
1271
+ 20201113,06:00,12:00,19,9,Passing clouds.,5,280,60,1020
1272
+ 20201113,12:00,18:00,19,16,Passing clouds.,15,290,66,1019
1273
+ 20201113,18:00,00:00,16,14,Passing clouds.,2,0,83,1020
1274
+ 20201114,00:00,06:00,14,13,Passing clouds.,0,0,83,1019
1275
+ 20201114,06:00,12:00,20,14,Passing clouds.,7,0,65,1020
1276
+ 20201114,12:00,18:00,19,17,Passing clouds.,21,340,66,1018
1277
+ 20201114,18:00,00:00,17,13,Clear.,9,10,77,1020
1278
+ 20201115,00:00,06:00,13,12,Clear.,2,350,80,1019
1279
+ 20201115,06:00,12:00,27,12,Sunny.,4,310,43,1019
1280
+ 20201115,12:00,18:00,24,19,Sunny.,21,330,35,1016
1281
+ 20201115,18:00,00:00,18,14,Clear.,3,290,49,1016
1282
+ 20201116,00:00,06:00,14,13,Clear.,5,0,55,1016
1283
+ 20201116,06:00,12:00,32,13,Sunny.,4,340,38,1016
1284
+ 20201116,12:00,18:00,23,17,Sunny.,10,170,67,1014
1285
+ 20201116,18:00,00:00,17,13,Passing clouds.,2,260,72,1015
1286
+ 20201117,00:00,06:00,16,12,Clear.,2,40,68,1016
1287
+ 20201117,06:00,12:00,25,13,Passing clouds.,6,170,40,1017
1288
+ 20201117,12:00,18:00,25,21,Passing clouds.,9,320,48,1015
1289
+ 20201117,18:00,00:00,17,15,Fog.,7,340,85,1017
1290
+ 20201118,00:00,06:00,14,13,Fog.,6,320,89,1017
1291
+ 20201118,06:00,12:00,19,14,Partly sunny.,8,50,75,1020
1292
+ 20201118,12:00,18:00,19,16,Passing clouds.,20,320,68,1018
1293
+ 20201118,18:00,00:00,16,14,Passing clouds.,8,0,80,1019
1294
+ 20201119,00:00,06:00,15,14,Fog.,11,10,85,1020
1295
+ 20201119,06:00,12:00,19,14,Scattered clouds.,12,320,74,1020
1296
+ 20201119,12:00,18:00,19,17,Scattered clouds.,19,340,72,1018
1297
+ 20201119,18:00,00:00,17,14,Passing clouds.,11,330,84,1018
1298
+ 20201120,00:00,06:00,14,13,Fog.,7,350,90,1018
1299
+ 20201120,06:00,12:00,22,13,Partly sunny.,8,350,69,1019
1300
+ 20201120,12:00,18:00,21,17,Partly sunny.,15,310,67,1018
1301
+ 20201120,18:00,00:00,17,15,Passing clouds.,8,330,80,1019
1302
+ 20201121,00:00,06:00,14,13,Dense fog.,9,10,88,1018
1303
+ 20201121,06:00,12:00,21,13,Partly sunny.,6,350,77,1019
1304
+ 20201121,12:00,18:00,19,17,Partly sunny.,13,320,62,1016
1305
+ 20201121,18:00,00:00,17,13,Passing clouds.,5,350,84,1016
1306
+ 20201122,00:00,06:00,15,13,Fog.,1,0,88,1015
1307
+ 20201122,06:00,12:00,19,14,Fog.,7,70,79,1015
1308
+ 20201122,12:00,18:00,19,15,Partly sunny.,8,280,75,1012
1309
+ 20201122,18:00,00:00,16,15,Dense fog.,3,140,88,1013
1310
+ 20201123,00:00,06:00,15,13,Fog.,6,110,88,1012
1311
+ 20201123,06:00,12:00,18,14,Partly sunny.,9,140,77,1013
1312
+ 20201123,12:00,18:00,18,15,Broken clouds.,8,170,70,1012
1313
+ 20201123,18:00,00:00,16,15,Passing clouds.,9,150,78,1014
1314
+ 20201124,00:00,06:00,15,13,Passing clouds.,7,110,74,1016
1315
+ 20201124,06:00,12:00,18,13,Passing clouds.,7,130,61,1018
1316
+ 20201124,12:00,18:00,18,16,Passing clouds.,8,270,67,1017
1317
+ 20201124,18:00,00:00,15,13,Clear.,0,0,85,1018
1318
+ 20201125,00:00,06:00,13,12,Passing clouds.,2,100,86,1019
1319
+ 20201125,06:00,12:00,19,14,Scattered clouds.,6,300,71,1020
1320
+ 20201125,12:00,18:00,19,16,Passing clouds.,12,300,66,1017
1321
+ 20201125,18:00,00:00,16,14,Passing clouds.,4,350,78,1018
1322
+ 20201126,00:00,06:00,16,12,Overcast.,3,100,81,1017
1323
+ 20201126,06:00,12:00,18,12,Sunny.,5,70,68,1017
1324
+ 20201126,12:00,18:00,18,16,Sunny.,11,300,62,1016
1325
+ 20201126,18:00,00:00,15,12,Clear.,5,0,80,1018
1326
+ 20201127,00:00,06:00,12,8,Clear.,3,330,73,1019
1327
+ 20201127,06:00,12:00,19,9,Sunny.,7,50,45,1021
1328
+ 20201127,12:00,18:00,21,16,Passing clouds.,13,300,33,1020
1329
+ 20201127,18:00,00:00,14,9,Clear.,2,230,69,1021
1330
+ 20201128,00:00,06:00,11,7,Clear.,5,0,56,1021
1331
+ 20201128,06:00,12:00,22,8,Passing clouds.,8,40,30,1021
1332
+ 20201128,12:00,18:00,22,16,Sunny.,15,320,34,1018
1333
+ 20201128,18:00,00:00,14,11,Clear.,1,290,59,1019
1334
+ 20201129,00:00,06:00,10,8,Clear.,2,0,62,1018
1335
+ 20201129,06:00,12:00,23,8,Passing clouds.,4,20,31,1019
1336
+ 20201129,12:00,18:00,23,16,Passing clouds.,19,320,40,1017
1337
+ 20201129,18:00,00:00,14,11,Passing clouds.,4,270,76,1020
1338
+ 20201130,00:00,06:00,12,11,Clear.,5,40,65,1020
1339
+ 20201130,06:00,12:00,23,11,Broken clouds.,8,330,38,1020
1340
+ 20201130,12:00,18:00,22,16,Passing clouds.,20,320,50,1018
1341
+ 20201130,18:00,00:00,15,11,Clear.,2,340,70,1019
1342
+ 20201201,00:00,06:00,11,8,Clear.,0,0,74,1018
1343
+ 20201201,06:00,12:00,23,8,Sunny.,5,350,38,1018
1344
+ 20201201,12:00,18:00,22,17,Sunny.,14,320,33,1016
1345
+ 20201201,18:00,00:00,16,12,Clear.,2,290,68,1017
1346
+ 20201202,00:00,06:00,11,9,Clear.,0,0,72,1017
1347
+ 20201202,06:00,12:00,26,9,Passing clouds.,3,20,34,1018
1348
+ 20201202,12:00,18:00,27,16,Passing clouds.,12,320,22,1016
1349
+ 20201202,18:00,00:00,16,13,Passing clouds.,3,340,53,1018
1350
+ 20201203,00:00,06:00,16,12,Passing clouds.,7,50,23,1019
1351
+ 20201203,06:00,12:00,22,11,Passing clouds.,10,130,23,1022
1352
+ 20201203,12:00,18:00,22,16,Sunny.,13,300,38,1021
1353
+ 20201203,18:00,00:00,15,11,Clear.,4,290,50,1023
1354
+ 20201204,00:00,06:00,10,8,Clear.,3,110,48,1022
1355
+ 20201204,06:00,12:00,21,9,Passing clouds.,6,300,34,1022
1356
+ 20201204,12:00,18:00,21,16,Passing clouds.,12,330,42,1020
1357
+ 20201204,18:00,00:00,13,10,Clear.,2,270,75,1021
1358
+ 20201205,00:00,06:00,10,7,Clear.,2,340,61,1022
1359
+ 20201205,06:00,12:00,19,7,Partly sunny.,4,340,39,1024
1360
+ 20201205,12:00,18:00,21,14,Partly sunny.,7,210,42,1023
1361
+ 20201205,18:00,00:00,14,11,Clear.,7,10,63,1024
1362
+ 20201206,00:00,06:00,11,8,Clear.,5,90,55,1022
1363
+ 20201206,06:00,12:00,19,8,Sunny.,8,320,38,1022
1364
+ 20201206,12:00,18:00,21,14,Scattered clouds.,15,320,53,1019
1365
+ 20201206,18:00,00:00,14,9,Passing clouds.,5,300,79,1019
1366
+ 20201207,00:00,06:00,11,8,Clear.,1,340,66,1016
1367
+ 20201207,06:00,12:00,16,11,Partly sunny.,3,270,54,1015
1368
+ 20201207,12:00,18:00,17,14,Partly sunny.,3,180,68,1014
1369
+ 20201207,18:00,00:00,15,14,Passing clouds.,9,350,66,1015
1370
+ 20201208,00:00,06:00,14,13,Passing clouds.,4,20,68,1015
1371
+ 20201208,06:00,12:00,26,14,Partly sunny.,5,0,34,1017
1372
+ 20201208,12:00,18:00,27,16,Broken clouds.,11,310,35,1016
1373
+ 20201208,18:00,00:00,16,13,Partly cloudy.,2,210,72,1018
1374
+ 20201209,00:00,06:00,12,10,Partly cloudy.,0,0,78,1018
1375
+ 20201209,06:00,12:00,22,11,Broken clouds.,5,50,46,1017
1376
+ 20201209,12:00,18:00,19,14,Broken clouds.,6,0,74,1014
1377
+ 20201209,18:00,00:00,14,11,Fog.,4,350,88,1015
1378
+ 20201210,00:00,06:00,12,9,Passing clouds.,3,140,81,1015
1379
+ 20201210,06:00,12:00,17,11,Broken clouds.,6,170,63,1017
1380
+ 20201210,12:00,18:00,17,15,Scattered clouds.,13,210,61,1017
1381
+ 20201210,18:00,00:00,15,14,Overcast.,4,280,62,1019
1382
+ 20201211,00:00,06:00,14,10,Passing clouds.,4,270,72,1019
1383
+ 20201211,06:00,12:00,17,10,Scattered clouds.,7,120,65,1020
1384
+ 20201211,12:00,18:00,17,13,Broken clouds.,10,290,62,1019
1385
+ 20201211,18:00,00:00,13,11,Passing clouds.,0,0,76,1019
1386
+ 20201212,00:00,06:00,11,10,Passing clouds.,5,120,81,1018
1387
+ 20201212,06:00,12:00,15,11,Mostly cloudy.,4,160,73,1019
1388
+ 20201212,12:00,18:00,17,15,Partly sunny.,8,180,76,1017
1389
+ 20201212,18:00,00:00,14,11,Clear.,4,310,87,1020
1390
+ 20201213,00:00,06:00,11,7,Clear.,2,330,90,1022
1391
+ 20201213,06:00,12:00,19,7,Scattered clouds.,2,290,56,1023
1392
+ 20201213,12:00,18:00,19,16,Scattered clouds.,13,300,53,1022
1393
+ 20201213,18:00,00:00,15,11,Fog.,1,20,80,1021
1394
+ 20201214,00:00,06:00,12,11,Passing clouds.,2,120,70,1019
1395
+ 20201214,06:00,12:00,17,10,Broken clouds.,6,160,83,1019
1396
+ 20201214,12:00,18:00,17,15,Broken clouds.,15,270,66,1017
1397
+ 20201214,18:00,00:00,14,11,Passing clouds.,4,340,79,1019
1398
+ 20201215,00:00,06:00,10,8,Passing clouds.,2,100,86,1020
1399
+ 20201215,06:00,12:00,18,9,Passing clouds.,4,350,58,1022
1400
+ 20201215,12:00,18:00,19,16,Passing clouds.,16,320,54,1021
1401
+ 20201215,18:00,00:00,15,11,Clear.,6,350,66,1022
1402
+ 20201216,00:00,06:00,11,7,Clear.,3,80,60,1021
1403
+ 20201216,06:00,12:00,22,7,Passing clouds.,3,0,35,1021
1404
+ 20201216,12:00,18:00,21,15,Passing clouds.,18,320,41,1018
1405
+ 20201216,18:00,00:00,15,10,Passing clouds.,1,0,83,1018
1406
+ 20201217,00:00,06:00,9,8,Passing clouds.,1,110,83,1017
1407
+ 20201217,06:00,12:00,17,9,Broken clouds.,2,140,59,1018
1408
+ 20201217,12:00,18:00,17,14,Partly sunny.,13,270,75,1015
1409
+ 20201217,18:00,00:00,14,12,Passing clouds.,9,290,81,1016
1410
+ 20201218,00:00,06:00,12,10,Passing clouds.,2,90,91,1018
1411
+ 20201218,06:00,12:00,17,9,Sunny.,6,160,73,1021
1412
+ 20201218,12:00,18:00,18,14,Sunny.,18,330,66,1021
1413
+ 20201218,18:00,00:00,13,10,Clear.,0,0,86,1023
1414
+ 20201219,00:00,06:00,10,7,Clear.,6,340,82,1024
1415
+ 20201219,06:00,12:00,22,7,Sunny.,3,310,45,1025
1416
+ 20201219,12:00,18:00,21,16,Sunny.,21,340,40,1022
1417
+ 20201219,18:00,00:00,14,9,Clear.,2,10,65,1023
1418
+ 20201220,00:00,06:00,9,7,Clear.,6,350,60,1021
1419
+ 20201220,06:00,12:00,23,8,Passing clouds.,5,10,36,1021
1420
+ 20201220,12:00,18:00,24,16,Passing clouds.,13,340,33,1017
1421
+ 20201220,18:00,00:00,14,11,Clear.,3,40,64,1017
1422
+ 20201221,00:00,06:00,11,9,Clear.,2,350,62,1015
1423
+ 20201221,06:00,12:00,27,8,Sunny.,0,0,31,1015
1424
+ 20201221,12:00,18:00,24,14,Sunny.,8,190,68,1014
1425
+ 20201221,18:00,00:00,14,12,Fog.,7,200,92,1016
1426
+ 20201222,00:00,06:00,12,9,Passing clouds.,1,110,87,1017
1427
+ 20201222,06:00,12:00,16,11,Fog.,8,100,89,1018
1428
+ 20201222,12:00,18:00,16,13,Passing clouds.,9,180,81,1017
1429
+ 20201222,18:00,00:00,14,13,Passing clouds.,8,160,81,1019
1430
+ 20201223,00:00,06:00,13,9,Passing clouds.,6,100,87,1019
1431
+ 20201223,06:00,12:00,17,9,Partly sunny.,5,320,72,1020
1432
+ 20201223,12:00,18:00,19,14,Partly sunny.,10,350,62,1020
1433
+ 20201223,18:00,00:00,13,12,High level clouds.,4,10,69,1022
1434
+ 20201224,00:00,06:00,16,12,Passing clouds.,6,350,29,1022
1435
+ 20201224,06:00,12:00,17,14,Broken clouds.,9,310,26,1024
1436
+ 20201224,12:00,18:00,20,17,Partly sunny.,14,10,26,1021
1437
+ 20201224,18:00,00:00,17,12,Passing clouds.,1,10,52,1020
1438
+ 20201225,00:00,06:00,12,9,Clear.,6,10,58,1019
1439
+ 20201225,06:00,12:00,21,11,Sunny.,2,300,33,1021
1440
+ 20201225,12:00,18:00,22,16,Sunny.,14,340,44,1019
1441
+ 20201225,18:00,00:00,14,11,Clear.,6,330,83,1020
1442
+ 20201226,00:00,06:00,11,9,Clear.,2,60,80,1021
1443
+ 20201226,06:00,12:00,18,9,Passing clouds.,6,310,66,1021
1444
+ 20201226,12:00,18:00,18,14,Passing clouds.,17,320,74,1018
1445
+ 20201226,18:00,00:00,14,12,Passing clouds.,3,330,85,1018
1446
+ 20201227,00:00,06:00,13,12,Fog.,3,90,87,1017
1447
+ 20201227,06:00,12:00,16,12,Fog.,8,130,76,1016
1448
+ 20201227,12:00,18:00,16,14,Partly sunny.,11,230,74,1013
1449
+ 20201227,18:00,00:00,14,12,Overcast.,8,160,80,1013
1450
+ 20201228,00:00,06:00,14,11,Passing clouds.,19,200,82,1013
1451
+ 20201228,06:00,12:00,16,12,Broken clouds.,18,250,67,1014
1452
+ 20201228,12:00,18:00,16,13,Scattered clouds.,20,200,62,1013
1453
+ 20201228,18:00,00:00,13,12,Partly cloudy.,19,250,78,1014
1454
+ 20201229,00:00,06:00,13,11,Passing clouds.,9,220,76,1015
1455
+ 20201229,06:00,12:00,16,11,Broken clouds.,9,100,75,1019
1456
+ 20201229,12:00,18:00,16,14,Passing clouds.,23,310,64,1019
1457
+ 20201229,18:00,00:00,14,9,Passing clouds.,4,0,77,1022
1458
+ 20201230,00:00,06:00,8,6,Clear.,4,10,79,1023
1459
+ 20201230,06:00,12:00,16,7,Passing clouds.,4,30,56,1024
1460
+ 20201230,12:00,18:00,17,14,Scattered clouds.,14,310,55,1021
1461
+ 20201230,18:00,00:00,13,8,Passing clouds.,2,20,74,1021
1462
+ 20201231,00:00,06:00,8,7,Passing clouds.,2,350,70,1018
1463
+ 20201231,06:00,12:00,16,8,Broken clouds.,5,120,68,1016
1464
+ 20201231,12:00,18:00,17,14,Passing clouds.,18,320,62,1013
1465
+ 20201231,18:00,00:00,12,8,Haze.,4,80,79,1014
weather/san-diego/raw_data/daily_weather_2021.csv ADDED
@@ -0,0 +1,1461 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20210101,00:00,06:00,9,7,Fog.,5,90,83,1016
3
+ 20210101,06:00,12:00,18,7,Sunny.,2,330,54,1019
4
+ 20210101,12:00,18:00,19,14,Sunny.,9,290,41,1019
5
+ 20210101,18:00,00:00,14,10,Clear.,2,20,80,1022
6
+ 20210102,00:00,06:00,9,8,Clear.,2,320,69,1023
7
+ 20210102,06:00,12:00,17,8,Partly sunny.,6,70,51,1025
8
+ 20210102,12:00,18:00,18,14,Scattered clouds.,10,290,60,1023
9
+ 20210102,18:00,00:00,13,11,Fog.,2,340,86,1023
10
+ 20210103,00:00,06:00,10,8,Clear.,0,0,78,1023
11
+ 20210103,06:00,12:00,16,8,Broken clouds.,4,120,64,1024
12
+ 20210103,12:00,18:00,16,14,Scattered clouds.,13,280,71,1021
13
+ 20210103,18:00,00:00,14,10,Passing clouds.,3,330,86,1021
14
+ 20210104,00:00,06:00,11,9,Clear.,3,10,89,1021
15
+ 20210104,06:00,12:00,17,10,Passing clouds.,7,90,73,1022
16
+ 20210104,12:00,18:00,17,13,Partly sunny.,20,300,73,1021
17
+ 20210104,18:00,00:00,13,11,Passing clouds.,7,330,84,1021
18
+ 20210105,00:00,06:00,12,9,Passing clouds.,5,330,88,1020
19
+ 20210105,06:00,12:00,14,11,Fog.,10,320,83,1020
20
+ 20210105,12:00,18:00,16,13,Partly sunny.,16,320,75,1019
21
+ 20210105,18:00,00:00,13,11,Fog.,11,10,86,1019
22
+ 20210106,00:00,06:00,12,10,Fog.,6,40,91,1019
23
+ 20210106,06:00,12:00,14,9,Fog.,5,10,86,1021
24
+ 20210106,12:00,18:00,16,13,Partly sunny.,12,340,78,1019
25
+ 20210106,18:00,00:00,13,10,Fog.,7,320,91,1019
26
+ 20210107,00:00,06:00,11,10,Fog.,8,340,92,1019
27
+ 20210107,06:00,12:00,20,9,Fog.,4,20,70,1019
28
+ 20210107,12:00,18:00,17,14,Partly sunny.,14,310,67,1017
29
+ 20210107,18:00,00:00,13,11,Fog.,6,330,91,1018
30
+ 20210108,00:00,06:00,12,10,Fog.,2,310,88,1019
31
+ 20210108,06:00,12:00,17,10,Fog.,3,0,83,1021
32
+ 20210108,12:00,18:00,17,12,Haze.,14,320,73,1018
33
+ 20210108,18:00,00:00,12,9,Fog.,4,0,90,1019
34
+ 20210109,00:00,06:00,9,7,Fog.,4,0,93,1018
35
+ 20210109,06:00,12:00,16,7,Passing clouds.,3,50,72,1018
36
+ 20210109,12:00,18:00,17,13,Passing clouds.,12,310,61,1017
37
+ 20210109,18:00,00:00,13,9,Fog.,4,50,89,1019
38
+ 20210110,00:00,06:00,9,8,Fog.,3,80,87,1020
39
+ 20210110,06:00,12:00,22,7,Passing clouds.,5,340,41,1022
40
+ 20210110,12:00,18:00,22,14,Partly sunny.,15,310,32,1020
41
+ 20210110,18:00,00:00,13,9,Passing clouds.,2,330,57,1021
42
+ 20210111,00:00,06:00,9,7,Clear.,6,50,68,1021
43
+ 20210111,06:00,12:00,19,8,Passing clouds.,9,350,42,1021
44
+ 20210111,12:00,18:00,21,16,Passing clouds.,17,330,37,1020
45
+ 20210111,18:00,00:00,13,10,Passing clouds.,6,0,56,1022
46
+ 20210112,00:00,06:00,10,7,Passing clouds.,2,120,70,1023
47
+ 20210112,06:00,12:00,22,8,Scattered clouds.,5,350,36,1024
48
+ 20210112,12:00,18:00,22,16,Scattered clouds.,18,340,33,1023
49
+ 20210112,18:00,00:00,14,11,Passing clouds.,4,320,58,1024
50
+ 20210113,00:00,06:00,10,8,Passing clouds.,2,350,67,1024
51
+ 20210113,06:00,12:00,20,9,Partly sunny.,8,320,40,1023
52
+ 20210113,12:00,18:00,21,17,Partly sunny.,20,320,38,1020
53
+ 20210113,18:00,00:00,16,12,Passing clouds.,6,340,74,1021
54
+ 20210114,00:00,06:00,12,10,Passing clouds.,4,0,74,1020
55
+ 20210114,06:00,12:00,26,10,Passing clouds.,6,330,42,1021
56
+ 20210114,12:00,18:00,27,19,Passing clouds.,18,340,25,1019
57
+ 20210114,18:00,00:00,19,13,Passing clouds.,6,330,47,1020
58
+ 20210115,00:00,06:00,16,12,Passing clouds.,2,300,55,1019
59
+ 20210115,06:00,12:00,28,11,Passing clouds.,1,220,36,1020
60
+ 20210115,12:00,18:00,30,21,Passing clouds.,11,10,20,1016
61
+ 20210115,18:00,00:00,17,12,Clear.,2,270,42,1016
62
+ 20210116,00:00,06:00,13,11,Clear.,2,10,60,1015
63
+ 20210116,06:00,12:00,21,10,Scattered clouds.,6,190,45,1015
64
+ 20210116,12:00,18:00,21,16,Passing clouds.,6,170,47,1013
65
+ 20210116,18:00,00:00,16,12,Passing clouds.,3,340,62,1015
66
+ 20210117,00:00,06:00,12,11,Clear.,3,30,67,1015
67
+ 20210117,06:00,12:00,25,12,Passing clouds.,5,140,46,1016
68
+ 20210117,12:00,18:00,26,16,Sunny.,7,170,52,1014
69
+ 20210117,18:00,00:00,14,12,Clear.,0,0,82,1014
70
+ 20210118,00:00,06:00,13,10,Clear.,1,10,64,1012
71
+ 20210118,06:00,12:00,18,11,Sunny.,6,170,72,1011
72
+ 20210118,12:00,18:00,16,13,Partly sunny.,11,210,81,1008
73
+ 20210118,18:00,00:00,14,13,Passing clouds.,11,170,83,1008
74
+ 20210119,00:00,06:00,13,12,Passing clouds.,9,80,80,1007
75
+ 20210119,06:00,12:00,21,12,Broken clouds.,6,80,67,1006
76
+ 20210119,12:00,18:00,22,19,Partly sunny.,20,80,22,1007
77
+ 20210119,18:00,00:00,18,15,Passing clouds.,9,20,51,1010
78
+ 20210120,00:00,06:00,18,15,Passing clouds.,12,90,48,1011
79
+ 20210120,06:00,12:00,22,17,Partly sunny.,14,70,42,1013
80
+ 20210120,12:00,18:00,22,19,Broken clouds.,18,70,40,1012
81
+ 20210120,18:00,00:00,18,16,Passing clouds.,4,180,60,1014
82
+ 20210121,00:00,06:00,16,13,Partly cloudy.,4,190,80,1016
83
+ 20210121,06:00,12:00,19,12,Passing clouds.,8,210,73,1017
84
+ 20210121,12:00,18:00,19,16,Passing clouds.,9,210,71,1016
85
+ 20210121,18:00,00:00,15,13,Fog.,5,170,90,1018
86
+ 20210122,00:00,06:00,13,12,Passing clouds.,7,90,87,1017
87
+ 20210122,06:00,12:00,17,13,Partly sunny.,11,110,73,1017
88
+ 20210122,12:00,18:00,17,13,Partly sunny.,16,260,69,1015
89
+ 20210122,18:00,00:00,14,13,Light rain. Fog.,8,260,73,1015
90
+ 20210123,00:00,06:00,13,12,Passing clouds.,19,290,72,1014
91
+ 20210123,06:00,12:00,15,12,Broken clouds.,8,220,68,1014
92
+ 20210123,12:00,18:00,13,11,Light rain. Fog.,14,300,78,1012
93
+ 20210123,18:00,00:00,10,9,Light rain. Mostly cloudy.,8,60,84,1012
94
+ 20210124,00:00,06:00,9,8,Overcast.,3,70,86,1012
95
+ 20210124,06:00,12:00,14,8,Partly sunny.,9,100,76,1014
96
+ 20210124,12:00,18:00,15,12,Scattered clouds.,13,190,65,1013
97
+ 20210124,18:00,00:00,13,12,Partly cloudy.,16,280,70,1013
98
+ 20210125,00:00,06:00,13,11,Mostly cloudy.,31,220,72,1010
99
+ 20210125,06:00,12:00,13,9,Partly sunny.,40,290,58,1011
100
+ 20210125,12:00,18:00,12,11,Broken clouds.,44,280,55,1009
101
+ 20210125,18:00,00:00,12,10,Passing clouds.,48,290,56,1009
102
+ 20210126,00:00,06:00,12,11,Partly cloudy.,37,280,55,1011
103
+ 20210126,06:00,12:00,14,11,Partly sunny.,16,290,49,1016
104
+ 20210126,12:00,18:00,14,11,Passing clouds.,12,260,44,1018
105
+ 20210126,18:00,00:00,11,7,Passing clouds.,6,100,62,1021
106
+ 20210127,00:00,06:00,7,6,Passing clouds.,6,90,70,1022
107
+ 20210127,06:00,12:00,15,7,Scattered clouds.,6,80,53,1022
108
+ 20210127,12:00,18:00,16,11,Passing clouds.,9,280,50,1019
109
+ 20210127,18:00,00:00,12,9,Passing clouds.,5,80,72,1018
110
+ 20210128,00:00,06:00,9,7,Passing clouds.,4,0,74,1016
111
+ 20210128,06:00,12:00,16,8,Partly sunny.,3,90,59,1016
112
+ 20210128,12:00,18:00,16,14,Partly sunny.,15,200,60,1014
113
+ 20210128,18:00,00:00,14,13,Passing clouds.,27,150,76,1014
114
+ 20210129,00:00,06:00,12,11,Light rain. Fog.,15,140,87,1014
115
+ 20210129,06:00,12:00,16,11,Scattered clouds.,17,140,76,1015
116
+ 20210129,12:00,18:00,15,11,Cloudy.,17,290,75,1016
117
+ 20210129,18:00,00:00,11,9,Passing clouds.,6,80,88,1018
118
+ 20210130,00:00,06:00,9,7,Clear.,2,100,90,1020
119
+ 20210130,06:00,12:00,16,7,Passing clouds.,2,90,69,1022
120
+ 20210130,12:00,18:00,17,14,Passing clouds.,19,320,57,1020
121
+ 20210130,18:00,00:00,13,11,Clear.,6,350,78,1021
122
+ 20210131,00:00,06:00,11,8,Clear.,1,330,82,1020
123
+ 20210131,06:00,12:00,19,9,Partly sunny.,6,10,61,1021
124
+ 20210131,12:00,18:00,19,15,Partly sunny.,15,330,49,1018
125
+ 20210131,18:00,00:00,15,14,Passing clouds.,8,350,66,1018
126
+ 20210201,00:00,06:00,14,13,Passing clouds.,4,230,68,1017
127
+ 20210201,06:00,12:00,22,14,Broken clouds.,7,10,63,1019
128
+ 20210201,12:00,18:00,21,17,Broken clouds.,11,330,52,1016
129
+ 20210201,18:00,00:00,17,14,Passing clouds.,13,340,73,1018
130
+ 20210202,00:00,06:00,15,14,Passing clouds.,10,330,78,1017
131
+ 20210202,06:00,12:00,17,14,Broken clouds.,17,320,74,1018
132
+ 20210202,12:00,18:00,18,16,Partly sunny.,23,330,66,1017
133
+ 20210202,18:00,00:00,15,14,Passing clouds.,12,340,84,1018
134
+ 20210203,00:00,06:00,14,13,Fog.,7,10,88,1018
135
+ 20210203,06:00,12:00,15,13,Fog.,6,280,86,1019
136
+ 20210203,12:00,18:00,16,14,Broken clouds.,12,320,77,1017
137
+ 20210203,18:00,00:00,14,13,Passing clouds.,6,10,83,1018
138
+ 20210204,00:00,06:00,14,13,Passing clouds.,8,180,78,1018
139
+ 20210204,06:00,12:00,16,13,Partly sunny.,12,180,69,1020
140
+ 20210204,12:00,18:00,16,14,Passing clouds.,7,170,67,1019
141
+ 20210204,18:00,00:00,13,12,Passing clouds.,2,20,82,1020
142
+ 20210205,00:00,06:00,12,9,Passing clouds.,3,340,84,1020
143
+ 20210205,06:00,12:00,18,9,Passing clouds.,6,290,71,1020
144
+ 20210205,12:00,18:00,19,15,Passing clouds.,15,310,62,1017
145
+ 20210205,18:00,00:00,14,11,Fog.,4,340,88,1016
146
+ 20210206,00:00,06:00,13,11,Fog.,2,30,86,1016
147
+ 20210206,06:00,12:00,21,10,Sunny.,9,350,62,1016
148
+ 20210206,12:00,18:00,22,15,Sunny.,10,270,55,1014
149
+ 20210206,18:00,00:00,13,12,Fog.,3,20,88,1016
150
+ 20210207,00:00,06:00,12,11,Fog.,2,120,90,1014
151
+ 20210207,06:00,12:00,16,10,Fog.,5,0,81,1014
152
+ 20210207,12:00,18:00,18,13,Passing clouds.,10,300,68,1013
153
+ 20210207,18:00,00:00,12,12,Passing clouds.,1,200,86,1014
154
+ 20210208,00:00,06:00,12,12,Overcast.,3,110,80,1014
155
+ 20210208,06:00,12:00,14,11,Partly sunny.,5,170,75,1016
156
+ 20210208,12:00,18:00,15,13,Scattered clouds.,12,210,67,1015
157
+ 20210208,18:00,00:00,13,12,Passing clouds.,10,150,73,1017
158
+ 20210209,00:00,06:00,13,13,Passing clouds.,8,100,73,1016
159
+ 20210209,06:00,12:00,15,13,Overcast.,8,110,69,1017
160
+ 20210209,12:00,18:00,16,13,Partly sunny.,12,300,66,1016
161
+ 20210209,18:00,00:00,14,12,Passing clouds.,4,280,72,1017
162
+ 20210210,00:00,06:00,14,12,Passing clouds.,5,20,72,1016
163
+ 20210210,06:00,12:00,17,13,Broken clouds.,8,290,63,1017
164
+ 20210210,12:00,18:00,17,14,Broken clouds.,21,300,62,1016
165
+ 20210210,18:00,00:00,14,12,Clear.,8,330,78,1017
166
+ 20210211,00:00,06:00,11,10,Passing clouds.,2,10,84,1017
167
+ 20210211,06:00,12:00,18,10,Scattered clouds.,5,300,70,1018
168
+ 20210211,12:00,18:00,18,15,Partly sunny.,15,270,67,1016
169
+ 20210211,18:00,00:00,15,14,Overcast.,7,180,76,1016
170
+ 20210212,00:00,06:00,14,14,Overcast.,11,250,78,1015
171
+ 20210212,06:00,12:00,16,14,Mostly cloudy.,21,230,77,1014
172
+ 20210212,12:00,18:00,17,14,Scattered clouds.,17,310,64,1013
173
+ 20210212,18:00,00:00,14,11,Passing clouds.,2,270,84,1014
174
+ 20210213,00:00,06:00,11,10,Passing clouds.,7,90,85,1014
175
+ 20210213,06:00,12:00,16,11,Fog.,16,100,74,1015
176
+ 20210213,12:00,18:00,17,15,Broken clouds.,14,210,64,1012
177
+ 20210213,18:00,00:00,15,13,Mostly cloudy.,15,280,78,1012
178
+ 20210214,00:00,06:00,14,11,Passing clouds.,4,250,84,1012
179
+ 20210214,06:00,12:00,18,11,Scattered clouds.,7,150,72,1014
180
+ 20210214,12:00,18:00,18,15,Partly sunny.,23,320,58,1014
181
+ 20210214,18:00,00:00,14,11,Clear.,4,330,77,1016
182
+ 20210215,00:00,06:00,,,Not Available,,,,
183
+ 20210215,06:00,12:00,,,Not Available,,,,
184
+ 20210215,12:00,18:00,17,15,Broken clouds.,11,220,68,1017
185
+ 20210215,18:00,00:00,15,13,Passing clouds.,7,220,74,1016
186
+ 20210216,00:00,06:00,14,13,Light rain. Fog.,13,260,83,1015
187
+ 20210216,06:00,12:00,16,14,Partly sunny.,11,250,80,1016
188
+ 20210216,12:00,18:00,17,15,Partly sunny.,12,250,67,1015
189
+ 20210216,18:00,00:00,14,13,Passing clouds.,6,220,77,1016
190
+ 20210217,00:00,06:00,13,11,Passing clouds.,7,90,80,1015
191
+ 20210217,06:00,12:00,16,12,Broken clouds.,7,130,69,1017
192
+ 20210217,12:00,18:00,16,15,Passing clouds.,20,270,70,1015
193
+ 20210217,18:00,00:00,14,12,Clear.,7,30,69,1019
194
+ 20210218,00:00,06:00,13,11,Clear.,5,10,72,1022
195
+ 20210218,06:00,12:00,19,11,Sunny.,6,0,43,1025
196
+ 20210218,12:00,18:00,18,16,Sunny.,21,270,36,1025
197
+ 20210218,18:00,00:00,16,12,Clear.,5,10,56,1026
198
+ 20210219,00:00,06:00,12,10,Clear.,4,350,56,1025
199
+ 20210219,06:00,12:00,17,9,Passing clouds.,7,320,44,1024
200
+ 20210219,12:00,18:00,17,17,Passing clouds.,20,320,49,1021
201
+ 20210219,18:00,00:00,16,14,Clear.,7,320,72,1021
202
+ 20210220,00:00,06:00,,,Not Available,,,,
203
+ 20210220,06:00,12:00,17,15,Partly sunny.,10,140,61,1021
204
+ 20210220,12:00,18:00,18,16,Passing clouds.,14,260,60,1020
205
+ 20210220,18:00,00:00,16,14,Clear.,7,0,64,1022
206
+ 20210221,00:00,06:00,,,Not Available,,,,
207
+ 20210221,06:00,12:00,23,12,Sunny.,8,350,47,1025
208
+ 20210221,12:00,18:00,24,17,Sunny.,19,340,27,1022
209
+ 20210221,18:00,00:00,17,11,Clear.,10,340,46,1023
210
+ 20210222,00:00,06:00,11,7,Clear.,3,330,60,1023
211
+ 20210222,06:00,12:00,23,9,Sunny.,4,310,32,1022
212
+ 20210222,12:00,18:00,23,19,Sunny.,24,340,21,1018
213
+ 20210222,18:00,00:00,15,11,Clear.,6,140,88,1019
214
+ 20210223,00:00,06:00,11,9,Clear.,1,120,90,1017
215
+ 20210223,06:00,12:00,21,10,Passing clouds.,6,10,44,1017
216
+ 20210223,12:00,18:00,21,14,Passing clouds.,11,200,59,1015
217
+ 20210223,18:00,00:00,14,11,Passing clouds.,5,220,90,1017
218
+ 20210224,00:00,06:00,12,10,Fog.,2,140,88,1017
219
+ 20210224,06:00,12:00,16,11,Passing clouds.,9,90,66,1018
220
+ 20210224,12:00,18:00,16,14,Passing clouds.,12,210,72,1016
221
+ 20210224,18:00,00:00,14,13,Passing clouds.,9,170,82,1017
222
+ 20210225,00:00,06:00,13,9,Passing clouds.,6,100,88,1018
223
+ 20210225,06:00,12:00,21,9,Sunny.,8,330,62,1019
224
+ 20210225,12:00,18:00,20,17,Sunny.,25,320,39,1017
225
+ 20210225,18:00,00:00,16,12,Clear.,7,330,56,1017
226
+ 20210226,00:00,06:00,10,8,Clear.,3,120,64,1017
227
+ 20210226,06:00,12:00,21,8,Passing clouds.,4,200,39,1017
228
+ 20210226,12:00,18:00,19,15,Sunny.,15,330,43,1014
229
+ 20210226,18:00,00:00,14,12,Passing clouds.,5,300,79,1014
230
+ 20210227,00:00,06:00,12,10,Passing clouds.,7,80,88,1013
231
+ 20210227,06:00,12:00,16,10,Sunny.,7,100,70,1014
232
+ 20210227,12:00,18:00,17,15,Passing clouds.,11,270,70,1013
233
+ 20210227,18:00,00:00,14,11,Clear.,5,110,83,1015
234
+ 20210228,00:00,06:00,12,8,Clear.,5,80,84,1017
235
+ 20210228,06:00,12:00,20,9,Sunny.,5,290,47,1020
236
+ 20210228,12:00,18:00,21,16,Scattered clouds.,19,270,30,1019
237
+ 20210228,18:00,00:00,16,11,Passing clouds.,5,0,64,1022
238
+ 20210301,00:00,06:00,12,9,Clear.,6,50,53,1022
239
+ 20210301,06:00,12:00,22,10,Sunny.,2,350,21,1022
240
+ 20210301,12:00,18:00,22,16,Sunny.,17,270,25,1018
241
+ 20210301,18:00,00:00,16,11,Clear.,4,350,54,1017
242
+ 20210302,00:00,06:00,11,8,Clear.,4,0,55,1015
243
+ 20210302,06:00,12:00,19,9,Passing clouds.,10,0,35,1014
244
+ 20210302,12:00,18:00,18,14,Passing clouds.,9,180,56,1011
245
+ 20210302,18:00,00:00,13,11,Passing clouds.,1,90,79,1011
246
+ 20210303,00:00,06:00,11,9,Passing clouds.,11,120,84,1010
247
+ 20210303,06:00,12:00,14,10,Scattered clouds.,28,160,73,1011
248
+ 20210303,12:00,18:00,14,12,Thunderstorms. Broken clouds.,19,180,85,1011
249
+ 20210303,18:00,00:00,13,12,Partly cloudy.,14,230,81,1016
250
+ 20210304,00:00,06:00,13,12,Passing clouds.,7,200,80,1020
251
+ 20210304,06:00,12:00,16,12,Scattered clouds.,6,140,75,1024
252
+ 20210304,12:00,18:00,16,14,Passing clouds.,20,310,67,1023
253
+ 20210304,18:00,00:00,14,12,Passing clouds.,13,0,81,1023
254
+ 20210305,00:00,06:00,12,9,Passing clouds.,3,40,88,1021
255
+ 20210305,06:00,12:00,18,9,Passing clouds.,13,310,68,1020
256
+ 20210305,12:00,18:00,18,15,Passing clouds.,19,310,67,1017
257
+ 20210305,18:00,00:00,14,13,Passing clouds.,6,260,89,1017
258
+ 20210306,00:00,06:00,13,12,Passing clouds.,6,290,89,1017
259
+ 20210306,06:00,12:00,17,12,Passing clouds.,7,300,73,1018
260
+ 20210306,12:00,18:00,17,14,Scattered clouds.,21,290,70,1016
261
+ 20210306,18:00,00:00,14,12,Overcast.,13,280,77,1017
262
+ 20210307,00:00,06:00,13,11,Overcast.,3,240,79,1017
263
+ 20210307,06:00,12:00,16,13,Overcast.,11,170,69,1018
264
+ 20210307,12:00,18:00,16,14,Partly sunny.,18,190,71,1018
265
+ 20210307,18:00,00:00,14,13,Mostly cloudy.,17,170,82,1019
266
+ 20210308,00:00,06:00,13,13,Overcast.,16,240,78,1020
267
+ 20210308,06:00,12:00,16,13,Broken clouds.,15,230,74,1022
268
+ 20210308,12:00,18:00,17,14,Broken clouds.,19,270,71,1021
269
+ 20210308,18:00,00:00,14,13,Partly cloudy.,11,310,76,1022
270
+ 20210309,00:00,06:00,13,9,Passing clouds.,5,330,83,1020
271
+ 20210309,06:00,12:00,16,11,Partly sunny.,17,290,70,1022
272
+ 20210309,12:00,18:00,16,13,Scattered clouds.,20,290,57,1022
273
+ 20210309,18:00,00:00,13,13,Partly cloudy.,14,270,68,1022
274
+ 20210310,00:00,06:00,13,11,Partly cloudy.,12,250,77,1020
275
+ 20210310,06:00,12:00,15,11,Broken clouds.,16,260,71,1020
276
+ 20210310,12:00,18:00,16,12,Passing clouds.,15,250,62,1018
277
+ 20210310,18:00,00:00,13,12,Passing clouds.,16,220,65,1018
278
+ 20210311,00:00,06:00,12,10,Light rain. Passing clouds.,18,260,75,1017
279
+ 20210311,06:00,12:00,13,10,Light rain. Broken clouds.,8,280,71,1019
280
+ 20210311,12:00,18:00,13,12,Broken clouds.,13,250,59,1018
281
+ 20210311,18:00,00:00,12,10,Passing clouds.,6,280,65,1019
282
+ 20210312,00:00,06:00,9,8,Partly cloudy.,9,100,77,1019
283
+ 20210312,06:00,12:00,13,9,Broken clouds.,8,80,66,1021
284
+ 20210312,12:00,18:00,14,12,Broken clouds.,18,300,56,1021
285
+ 20210312,18:00,00:00,12,9,Partly cloudy.,13,310,65,1022
286
+ 20210313,00:00,06:00,10,9,Passing clouds.,7,120,76,1023
287
+ 20210313,06:00,12:00,15,11,Broken clouds.,14,270,75,1025
288
+ 20210313,12:00,18:00,16,13,Passing clouds.,19,270,66,1025
289
+ 20210313,18:00,00:00,13,12,Passing clouds.,6,260,72,1025
290
+ 20210314,00:00,06:00,13,12,Mostly cloudy.,6,280,68,1025
291
+ 20210314,06:00,12:00,14,12,Partly sunny.,9,250,64,1025
292
+ 20210314,12:00,18:00,14,13,Broken clouds.,12,220,62,1022
293
+ 20210314,18:00,00:00,13,12,Partly cloudy.,5,270,70,1021
294
+ 20210315,00:00,06:00,13,12,Overcast.,12,290,70,1019
295
+ 20210315,06:00,12:00,13,12,Mostly cloudy.,12,220,78,1018
296
+ 20210315,12:00,18:00,13,12,Broken clouds.,29,290,71,1016
297
+ 20210315,18:00,00:00,12,11,Partly cloudy.,29,280,57,1016
298
+ 20210316,00:00,06:00,11,10,Passing clouds.,28,300,58,1016
299
+ 20210316,06:00,12:00,14,11,Partly sunny.,11,290,56,1018
300
+ 20210316,12:00,18:00,14,13,Passing clouds.,16,270,53,1018
301
+ 20210316,18:00,00:00,12,9,Passing clouds.,5,280,66,1019
302
+ 20210317,00:00,06:00,9,6,Passing clouds.,6,90,78,1020
303
+ 20210317,06:00,12:00,14,7,Scattered clouds.,6,80,68,1020
304
+ 20210317,12:00,18:00,16,14,Partly sunny.,19,300,62,1018
305
+ 20210317,18:00,00:00,13,12,Passing clouds.,10,330,73,1019
306
+ 20210318,00:00,06:00,12,10,Passing clouds.,1,40,82,1019
307
+ 20210318,06:00,12:00,16,12,Passing clouds.,11,20,72,1020
308
+ 20210318,12:00,18:00,16,14,Passing clouds.,23,320,67,1020
309
+ 20210318,18:00,00:00,14,12,Passing clouds.,13,310,78,1020
310
+ 20210319,00:00,06:00,12,10,Passing clouds.,4,30,87,1021
311
+ 20210319,06:00,12:00,18,9,Sunny.,11,340,74,1021
312
+ 20210319,12:00,18:00,18,15,Passing clouds.,22,320,71,1020
313
+ 20210319,18:00,00:00,16,14,Mostly cloudy.,13,330,87,1021
314
+ 20210320,00:00,06:00,14,13,Overcast.,8,330,91,1021
315
+ 20210320,06:00,12:00,15,13,Partly sunny.,8,270,88,1022
316
+ 20210320,12:00,18:00,16,15,Passing clouds.,15,280,65,1020
317
+ 20210320,18:00,00:00,14,11,Clear.,6,300,74,1020
318
+ 20210321,00:00,06:00,11,9,Clear.,2,120,83,1019
319
+ 20210321,06:00,12:00,15,9,Partly sunny.,8,130,76,1019
320
+ 20210321,12:00,18:00,16,15,Passing clouds.,16,200,64,1018
321
+ 20210321,18:00,00:00,14,12,Clear.,8,300,71,1019
322
+ 20210322,00:00,06:00,12,8,Clear.,6,90,84,1019
323
+ 20210322,06:00,12:00,16,9,Passing clouds.,10,100,72,1020
324
+ 20210322,12:00,18:00,17,15,Passing clouds.,15,260,70,1018
325
+ 20210322,18:00,00:00,14,13,Passing clouds.,10,210,77,1017
326
+ 20210323,00:00,06:00,13,12,Passing clouds.,14,210,76,1014
327
+ 20210323,06:00,12:00,16,12,Broken clouds.,16,230,73,1012
328
+ 20210323,12:00,18:00,16,15,Scattered clouds.,23,290,68,1011
329
+ 20210323,18:00,00:00,14,12,Passing clouds.,11,270,80,1013
330
+ 20210324,00:00,06:00,12,9,Passing clouds.,7,60,84,1014
331
+ 20210324,06:00,12:00,16,9,Passing clouds.,6,190,73,1015
332
+ 20210324,12:00,18:00,17,16,Scattered clouds.,18,260,66,1014
333
+ 20210324,18:00,00:00,14,13,Passing clouds.,9,190,87,1014
334
+ 20210325,00:00,06:00,13,12,Passing clouds.,15,160,86,1013
335
+ 20210325,06:00,12:00,15,13,Broken clouds.,16,220,68,1013
336
+ 20210325,12:00,18:00,15,12,Light rain. Mostly cloudy.,21,250,77,1013
337
+ 20210325,18:00,00:00,13,12,Passing clouds.,17,280,76,1012
338
+ 20210326,00:00,06:00,12,10,Passing clouds.,15,270,74,1013
339
+ 20210326,06:00,12:00,13,11,Broken clouds.,6,80,77,1015
340
+ 20210326,12:00,18:00,15,14,Passing clouds.,17,270,59,1016
341
+ 20210326,18:00,00:00,15,13,Clear.,12,340,67,1019
342
+ 20210327,00:00,06:00,11,9,Clear.,3,320,82,1021
343
+ 20210327,06:00,12:00,18,8,Sunny.,5,350,66,1023
344
+ 20210327,12:00,18:00,19,18,Sunny.,24,320,49,1022
345
+ 20210327,18:00,00:00,17,14,Clear.,14,350,64,1023
346
+ 20210328,00:00,06:00,13,10,Clear.,1,320,77,1022
347
+ 20210328,06:00,12:00,26,10,Sunny.,3,340,44,1021
348
+ 20210328,12:00,18:00,26,21,Sunny.,24,340,32,1017
349
+ 20210328,18:00,00:00,19,16,Clear.,14,330,48,1017
350
+ 20210329,00:00,06:00,15,12,Clear.,5,40,77,1015
351
+ 20210329,06:00,12:00,20,11,Passing clouds.,5,280,67,1014
352
+ 20210329,12:00,18:00,21,16,Scattered clouds.,12,260,70,1011
353
+ 20210329,18:00,00:00,13,13,Passing clouds.,13,160,86,1011
354
+ 20210330,00:00,06:00,13,13,Overcast.,16,150,87,1012
355
+ 20210330,06:00,12:00,16,13,Scattered clouds.,14,140,77,1014
356
+ 20210330,12:00,18:00,17,15,Passing clouds.,13,210,73,1014
357
+ 20210330,18:00,00:00,14,13,Passing clouds.,4,220,84,1016
358
+ 20210331,00:00,06:00,14,12,Passing clouds.,8,0,87,1017
359
+ 20210331,06:00,12:00,28,12,Sunny.,12,0,47,1017
360
+ 20210331,12:00,18:00,29,27,Sunny.,16,320,12,1015
361
+ 20210331,18:00,00:00,25,18,Passing clouds.,6,350,30,1015
362
+ 20210401,00:00,06:00,17,13,Clear.,2,350,42,1013
363
+ 20210401,06:00,12:00,29,16,Scattered clouds.,11,0,22,1012
364
+ 20210401,12:00,18:00,29,24,Partly sunny.,12,300,15,1010
365
+ 20210401,18:00,00:00,18,15,Passing clouds.,13,180,82,1013
366
+ 20210402,00:00,06:00,15,14,Passing clouds.,18,180,88,1014
367
+ 20210402,06:00,12:00,17,14,Partly sunny.,13,180,78,1017
368
+ 20210402,12:00,18:00,18,16,Sunny.,14,250,72,1017
369
+ 20210402,18:00,00:00,15,14,Passing clouds.,12,300,82,1018
370
+ 20210403,00:00,06:00,14,13,Low clouds.,9,320,85,1018
371
+ 20210403,06:00,12:00,17,13,Overcast.,12,320,80,1020
372
+ 20210403,12:00,18:00,18,16,Scattered clouds.,21,310,69,1019
373
+ 20210403,18:00,00:00,14,14,Passing clouds.,13,330,85,1019
374
+ 20210404,00:00,06:00,14,12,Low clouds.,9,0,89,1019
375
+ 20210404,06:00,12:00,18,13,Partly sunny.,8,340,79,1019
376
+ 20210404,12:00,18:00,19,17,Partly sunny.,19,300,64,1016
377
+ 20210404,18:00,00:00,17,14,Passing clouds.,10,310,78,1016
378
+ 20210405,00:00,06:00,14,14,Overcast.,3,290,86,1015
379
+ 20210405,06:00,12:00,17,14,Scattered clouds.,9,220,75,1016
380
+ 20210405,12:00,18:00,17,15,Broken clouds.,14,250,73,1014
381
+ 20210405,18:00,00:00,14,14,Passing clouds.,7,280,76,1014
382
+ 20210406,00:00,06:00,14,13,Passing clouds.,4,240,78,1014
383
+ 20210406,06:00,12:00,17,13,Broken clouds.,9,190,74,1015
384
+ 20210406,12:00,18:00,18,16,Partly sunny.,16,290,67,1015
385
+ 20210406,18:00,00:00,16,14,Passing clouds.,11,340,80,1017
386
+ 20210407,00:00,06:00,14,13,Passing clouds.,8,40,85,1017
387
+ 20210407,06:00,12:00,20,13,Passing clouds.,8,320,77,1018
388
+ 20210407,12:00,18:00,21,18,Scattered clouds.,19,320,69,1017
389
+ 20210407,18:00,00:00,17,16,Passing clouds.,11,310,77,1017
390
+ 20210408,00:00,06:00,16,13,Passing clouds.,6,330,91,1016
391
+ 20210408,06:00,12:00,17,14,Passing clouds.,7,140,83,1017
392
+ 20210408,12:00,18:00,18,17,Scattered clouds.,15,270,71,1016
393
+ 20210408,18:00,00:00,16,13,Passing clouds.,6,220,82,1015
394
+ 20210409,00:00,06:00,14,13,Passing clouds.,3,170,82,1015
395
+ 20210409,06:00,12:00,17,13,Overcast.,10,160,80,1015
396
+ 20210409,12:00,18:00,18,17,Partly sunny.,13,260,68,1014
397
+ 20210409,18:00,00:00,17,14,Passing clouds.,8,280,84,1014
398
+ 20210410,00:00,06:00,14,14,Overcast.,0,0,88,1013
399
+ 20210410,06:00,12:00,18,14,Scattered clouds.,7,200,79,1013
400
+ 20210410,12:00,18:00,18,16,Scattered clouds.,15,270,71,1011
401
+ 20210410,18:00,00:00,15,14,Overcast.,11,170,79,1012
402
+ 20210411,00:00,06:00,14,13,Overcast.,6,170,83,1009
403
+ 20210411,06:00,12:00,17,14,Partly sunny.,8,10,77,1010
404
+ 20210411,12:00,18:00,17,16,Partly sunny.,13,210,73,1008
405
+ 20210411,18:00,00:00,14,14,Overcast.,13,170,74,1009
406
+ 20210412,00:00,06:00,14,14,Overcast.,16,180,73,1009
407
+ 20210412,06:00,12:00,17,14,Overcast.,14,190,67,1010
408
+ 20210412,12:00,18:00,17,15,Partly sunny.,14,230,67,1011
409
+ 20210412,18:00,00:00,14,14,Passing clouds.,11,200,73,1012
410
+ 20210413,00:00,06:00,14,13,Passing clouds.,10,150,76,1012
411
+ 20210413,06:00,12:00,14,13,More clouds than sun.,13,230,74,1014
412
+ 20210413,12:00,18:00,15,14,More clouds than sun.,13,240,72,1013
413
+ 20210413,18:00,00:00,14,13,Overcast.,11,210,73,1014
414
+ 20210414,00:00,06:00,14,13,Partly cloudy.,11,250,73,1014
415
+ 20210414,06:00,12:00,15,13,Broken clouds.,14,260,63,1016
416
+ 20210414,12:00,18:00,16,14,Partly sunny.,16,260,58,1016
417
+ 20210414,18:00,00:00,14,13,Passing clouds.,11,280,61,1017
418
+ 20210415,00:00,06:00,13,11,Passing clouds.,8,90,61,1016
419
+ 20210415,06:00,12:00,16,11,Partly sunny.,8,90,59,1017
420
+ 20210415,12:00,18:00,17,16,Partly sunny.,20,300,60,1016
421
+ 20210415,18:00,00:00,15,14,Passing clouds.,14,310,74,1016
422
+ 20210416,00:00,06:00,14,13,Passing clouds.,7,350,78,1014
423
+ 20210416,06:00,12:00,17,14,Overcast.,9,0,72,1014
424
+ 20210416,12:00,18:00,18,16,Passing clouds.,16,280,65,1014
425
+ 20210416,18:00,00:00,15,14,Passing clouds.,11,300,76,1015
426
+ 20210417,00:00,06:00,14,14,Overcast.,3,270,73,1015
427
+ 20210417,06:00,12:00,17,14,Scattered clouds.,8,280,66,1015
428
+ 20210417,12:00,18:00,17,17,Sunny.,18,300,65,1014
429
+ 20210417,18:00,00:00,16,14,Passing clouds.,9,320,80,1014
430
+ 20210418,00:00,06:00,15,14,Passing clouds.,9,10,84,1015
431
+ 20210418,06:00,12:00,22,14,Passing clouds.,13,10,72,1016
432
+ 20210418,12:00,18:00,27,23,Sunny.,32,300,30,1013
433
+ 20210418,18:00,00:00,22,16,Clear.,15,340,50,1015
434
+ 20210419,00:00,06:00,17,12,Clear.,7,0,67,1016
435
+ 20210419,06:00,12:00,23,13,Sunny.,5,280,43,1016
436
+ 20210419,12:00,18:00,23,17,Sunny.,11,290,62,1015
437
+ 20210419,18:00,00:00,17,15,Passing clouds.,9,280,84,1015
438
+ 20210420,00:00,06:00,14,14,Passing clouds.,3,310,84,1014
439
+ 20210420,06:00,12:00,16,14,Partly sunny.,14,200,74,1015
440
+ 20210420,12:00,18:00,16,15,Partly sunny.,16,200,68,1013
441
+ 20210420,18:00,00:00,14,14,Passing clouds.,16,180,74,1013
442
+ 20210421,00:00,06:00,14,13,Passing clouds.,19,150,78,1013
443
+ 20210421,06:00,12:00,15,13,Broken clouds.,14,220,66,1014
444
+ 20210421,12:00,18:00,16,14,Mostly cloudy.,14,210,66,1013
445
+ 20210421,18:00,00:00,14,14,Mostly cloudy.,11,260,73,1013
446
+ 20210422,00:00,06:00,14,13,Passing clouds.,14,220,77,1014
447
+ 20210422,06:00,12:00,16,13,Broken clouds.,12,210,78,1015
448
+ 20210422,12:00,18:00,16,15,Broken clouds.,15,260,70,1014
449
+ 20210422,18:00,00:00,15,15,Passing clouds.,12,300,74,1015
450
+ 20210423,00:00,06:00,14,13,Passing clouds.,8,270,83,1016
451
+ 20210423,06:00,12:00,16,14,Broken clouds.,11,300,74,1017
452
+ 20210423,12:00,18:00,16,15,Broken clouds.,18,280,69,1018
453
+ 20210423,18:00,00:00,14,14,Overcast.,8,280,74,1017
454
+ 20210424,00:00,06:00,15,14,Overcast.,7,320,70,1016
455
+ 20210424,06:00,12:00,17,15,Overcast.,9,290,66,1017
456
+ 20210424,12:00,18:00,18,16,Scattered clouds.,19,300,64,1016
457
+ 20210424,18:00,00:00,15,14,Passing clouds.,14,310,75,1015
458
+ 20210425,00:00,06:00,14,14,Overcast.,7,330,72,1014
459
+ 20210425,06:00,12:00,17,14,Broken clouds.,11,280,67,1015
460
+ 20210425,12:00,18:00,17,16,Scattered clouds.,20,290,63,1012
461
+ 20210425,18:00,00:00,16,14,Partly cloudy.,18,290,72,1012
462
+ 20210426,00:00,06:00,14,14,Passing clouds.,11,280,71,1012
463
+ 20210426,06:00,12:00,14,13,Light rain. Mostly cloudy.,15,290,80,1013
464
+ 20210426,12:00,18:00,16,13,Broken clouds.,18,270,78,1013
465
+ 20210426,18:00,00:00,14,13,Partly cloudy.,15,270,70,1013
466
+ 20210427,00:00,06:00,13,13,Passing clouds.,12,290,66,1013
467
+ 20210427,06:00,12:00,16,13,Partly sunny.,10,270,58,1015
468
+ 20210427,12:00,18:00,16,16,Passing clouds.,20,260,53,1015
469
+ 20210427,18:00,00:00,15,13,Passing clouds.,12,10,67,1016
470
+ 20210428,00:00,06:00,13,11,Clear.,2,70,76,1017
471
+ 20210428,06:00,12:00,19,11,Passing clouds.,10,330,64,1019
472
+ 20210428,12:00,18:00,20,19,Sunny.,14,300,62,1018
473
+ 20210428,18:00,00:00,17,14,Clear.,3,210,86,1018
474
+ 20210429,00:00,06:00,14,13,Passing clouds.,0,0,93,1019
475
+ 20210429,06:00,12:00,23,13,Sunny.,5,310,53,1020
476
+ 20210429,12:00,18:00,24,22,Passing clouds.,19,310,44,1018
477
+ 20210429,18:00,00:00,21,19,Passing clouds.,9,310,54,1019
478
+ 20210430,00:00,06:00,18,14,Passing clouds.,5,350,65,1017
479
+ 20210430,06:00,12:00,27,17,Passing clouds.,8,10,40,1017
480
+ 20210430,12:00,18:00,28,22,Passing clouds.,14,310,44,1016
481
+ 20210430,18:00,00:00,21,16,Passing clouds.,10,320,80,1016
482
+ 20210501,00:00,06:00,16,16,Overcast.,6,270,87,1015
483
+ 20210501,06:00,12:00,17,15,Broken clouds.,12,180,79,1015
484
+ 20210501,12:00,18:00,17,15,Partly sunny.,16,210,75,1014
485
+ 20210501,18:00,00:00,14,14,Overcast.,15,190,78,1014
486
+ 20210502,00:00,06:00,14,14,Mostly cloudy.,21,160,80,1012
487
+ 20210502,06:00,12:00,17,13,Light rain. Fog.,20,160,85,1012
488
+ 20210502,12:00,18:00,16,14,Broken clouds.,22,160,76,1011
489
+ 20210502,18:00,00:00,16,15,Overcast.,11,210,79,1011
490
+ 20210503,00:00,06:00,15,14,Mostly cloudy.,12,170,81,1010
491
+ 20210503,06:00,12:00,19,15,Broken clouds.,13,140,72,1011
492
+ 20210503,12:00,18:00,19,18,Passing clouds.,17,260,65,1011
493
+ 20210503,18:00,00:00,17,16,Passing clouds.,7,200,83,1013
494
+ 20210504,00:00,06:00,16,15,Passing clouds.,5,210,86,1013
495
+ 20210504,06:00,12:00,19,15,Passing clouds.,9,270,79,1014
496
+ 20210504,12:00,18:00,19,17,Passing clouds.,13,290,72,1013
497
+ 20210504,18:00,00:00,17,15,Passing clouds.,6,270,84,1013
498
+ 20210505,00:00,06:00,16,15,Low clouds.,2,170,89,1013
499
+ 20210505,06:00,12:00,19,15,Fog.,10,0,83,1014
500
+ 20210505,12:00,18:00,19,17,Low clouds.,14,210,77,1014
501
+ 20210505,18:00,00:00,16,15,Passing clouds.,6,190,80,1016
502
+ 20210506,00:00,06:00,16,14,Low clouds.,5,0,84,1016
503
+ 20210506,06:00,12:00,17,14,Overcast.,8,210,80,1017
504
+ 20210506,12:00,18:00,17,16,Partly sunny.,13,230,74,1017
505
+ 20210506,18:00,00:00,15,14,Passing clouds.,9,250,76,1017
506
+ 20210507,00:00,06:00,14,14,Overcast.,5,270,76,1016
507
+ 20210507,06:00,12:00,18,14,Passing clouds.,11,220,69,1017
508
+ 20210507,12:00,18:00,18,17,Scattered clouds.,14,250,66,1016
509
+ 20210507,18:00,00:00,16,15,Overcast.,8,240,73,1014
510
+ 20210508,00:00,06:00,16,15,Overcast.,10,230,72,1013
511
+ 20210508,06:00,12:00,17,16,Overcast.,13,210,69,1015
512
+ 20210508,12:00,18:00,17,17,Passing clouds.,16,200,66,1014
513
+ 20210508,18:00,00:00,16,15,Overcast.,9,180,77,1014
514
+ 20210509,00:00,06:00,15,14,Overcast.,12,130,80,1013
515
+ 20210509,06:00,12:00,17,14,Overcast.,10,150,75,1014
516
+ 20210509,12:00,18:00,17,16,Scattered clouds.,15,230,69,1012
517
+ 20210509,18:00,00:00,16,15,Overcast.,8,230,76,1013
518
+ 20210510,00:00,06:00,15,15,Overcast.,8,200,74,1012
519
+ 20210510,06:00,12:00,17,15,Overcast.,11,200,71,1013
520
+ 20210510,12:00,18:00,18,16,Partly sunny.,17,230,66,1013
521
+ 20210510,18:00,00:00,16,14,Passing clouds.,7,230,74,1013
522
+ 20210511,00:00,06:00,15,15,Passing clouds.,1,200,76,1013
523
+ 20210511,06:00,12:00,16,15,Overcast.,8,180,76,1014
524
+ 20210511,12:00,18:00,18,17,Partly sunny.,15,260,69,1013
525
+ 20210511,18:00,00:00,16,15,Passing clouds.,9,280,78,1014
526
+ 20210512,00:00,06:00,16,15,Passing clouds.,7,310,81,1015
527
+ 20210512,06:00,12:00,18,16,Overcast.,6,20,78,1016
528
+ 20210512,12:00,18:00,18,17,Partly sunny.,15,250,74,1017
529
+ 20210512,18:00,00:00,17,17,Passing clouds.,12,280,76,1017
530
+ 20210513,00:00,06:00,17,17,Overcast.,12,310,78,1016
531
+ 20210513,06:00,12:00,20,17,Overcast.,13,310,76,1017
532
+ 20210513,12:00,18:00,20,18,Partly sunny.,23,300,64,1016
533
+ 20210513,18:00,00:00,17,16,Passing clouds.,15,320,75,1016
534
+ 20210514,00:00,06:00,16,16,Passing clouds.,4,310,80,1015
535
+ 20210514,06:00,12:00,19,16,Overcast.,14,280,74,1016
536
+ 20210514,12:00,18:00,19,17,Passing clouds.,19,260,65,1015
537
+ 20210514,18:00,00:00,16,16,Overcast.,10,270,73,1015
538
+ 20210515,00:00,06:00,16,15,Overcast.,9,230,71,1014
539
+ 20210515,06:00,12:00,18,15,Overcast.,13,220,66,1014
540
+ 20210515,12:00,18:00,18,16,More clouds than sun.,15,210,71,1014
541
+ 20210515,18:00,00:00,16,15,Overcast.,11,240,74,1014
542
+ 20210516,00:00,06:00,15,14,Overcast.,15,270,76,1015
543
+ 20210516,06:00,12:00,15,13,Light rain. Fog.,10,240,88,1016
544
+ 20210516,12:00,18:00,17,16,Partly sunny.,16,250,73,1017
545
+ 20210516,18:00,00:00,15,14,Passing clouds.,10,250,78,1017
546
+ 20210517,00:00,06:00,14,14,Overcast.,9,250,81,1017
547
+ 20210517,06:00,12:00,16,15,Mostly cloudy.,6,280,80,1018
548
+ 20210517,12:00,18:00,19,17,Partly sunny.,21,290,72,1017
549
+ 20210517,18:00,00:00,17,16,Mostly cloudy.,17,290,77,1017
550
+ 20210518,00:00,06:00,16,15,Overcast.,9,260,78,1017
551
+ 20210518,06:00,12:00,19,15,Partly sunny.,13,290,76,1016
552
+ 20210518,12:00,18:00,19,18,Passing clouds.,19,280,69,1013
553
+ 20210518,18:00,00:00,17,16,Passing clouds.,10,290,80,1013
554
+ 20210519,00:00,06:00,16,15,Overcast.,9,200,86,1013
555
+ 20210519,06:00,12:00,17,15,Overcast.,11,170,82,1013
556
+ 20210519,12:00,18:00,18,17,Partly sunny.,14,210,73,1012
557
+ 20210519,18:00,00:00,17,16,Mostly cloudy.,10,250,77,1013
558
+ 20210520,00:00,06:00,16,15,Passing clouds.,10,270,76,1012
559
+ 20210520,06:00,12:00,17,16,Partly sunny.,15,180,73,1012
560
+ 20210520,12:00,18:00,17,16,Overcast.,16,210,71,1013
561
+ 20210520,18:00,00:00,16,14,Passing clouds.,14,260,70,1013
562
+ 20210521,00:00,06:00,14,14,Passing clouds.,11,230,70,1013
563
+ 20210521,06:00,12:00,17,14,Partly sunny.,17,260,70,1016
564
+ 20210521,12:00,18:00,17,16,Partly sunny.,19,230,64,1017
565
+ 20210521,18:00,00:00,15,14,Passing clouds.,13,300,70,1018
566
+ 20210522,00:00,06:00,14,13,Passing clouds.,12,270,65,1018
567
+ 20210522,06:00,12:00,16,14,Partly sunny.,12,220,58,1019
568
+ 20210522,12:00,18:00,17,16,Passing clouds.,18,270,57,1018
569
+ 20210522,18:00,00:00,16,14,Passing clouds.,9,310,70,1019
570
+ 20210523,00:00,06:00,14,12,Clear.,4,20,77,1019
571
+ 20210523,06:00,12:00,19,12,Passing clouds.,10,290,66,1020
572
+ 20210523,12:00,18:00,19,18,Passing clouds.,24,300,64,1018
573
+ 20210523,18:00,00:00,17,15,Clear.,15,340,79,1017
574
+ 20210524,00:00,06:00,15,14,Clear.,9,0,87,1015
575
+ 20210524,06:00,12:00,21,15,Passing clouds.,13,10,70,1015
576
+ 20210524,12:00,18:00,22,19,Passing clouds.,18,320,62,1014
577
+ 20210524,18:00,00:00,17,14,Passing clouds.,6,180,87,1015
578
+ 20210525,00:00,06:00,16,13,Passing clouds.,2,350,90,1014
579
+ 20210525,06:00,12:00,20,15,Fog.,6,160,85,1015
580
+ 20210525,12:00,18:00,20,19,Scattered clouds.,14,200,76,1014
581
+ 20210525,18:00,00:00,18,17,Passing clouds.,9,200,86,1014
582
+ 20210526,00:00,06:00,17,16,Passing clouds.,10,170,89,1014
583
+ 20210526,06:00,12:00,18,17,Scattered clouds.,18,160,79,1017
584
+ 20210526,12:00,18:00,19,16,Partly sunny.,16,210,72,1018
585
+ 20210526,18:00,00:00,15,14,Passing clouds.,6,240,78,1018
586
+ 20210527,00:00,06:00,15,14,Passing clouds.,5,180,74,1018
587
+ 20210527,06:00,12:00,18,15,Overcast.,9,210,67,1019
588
+ 20210527,12:00,18:00,18,16,Passing clouds.,15,280,65,1017
589
+ 20210527,18:00,00:00,16,15,Passing clouds.,7,260,78,1017
590
+ 20210528,00:00,06:00,16,15,Passing clouds.,6,200,78,1016
591
+ 20210528,06:00,12:00,18,15,Overcast.,10,210,73,1016
592
+ 20210528,12:00,18:00,18,17,Partly sunny.,14,230,71,1015
593
+ 20210528,18:00,00:00,17,16,Passing clouds.,8,280,77,1015
594
+ 20210529,00:00,06:00,16,14,Overcast.,8,260,80,1014
595
+ 20210529,06:00,12:00,16,14,Overcast.,14,220,76,1014
596
+ 20210529,12:00,18:00,17,16,Overcast.,14,210,71,1013
597
+ 20210529,18:00,00:00,16,15,Passing clouds.,6,310,74,1013
598
+ 20210530,00:00,06:00,16,14,Overcast.,9,250,81,1012
599
+ 20210530,06:00,12:00,16,14,Overcast.,12,220,84,1013
600
+ 20210530,12:00,18:00,17,16,Partly sunny.,17,210,70,1012
601
+ 20210530,18:00,00:00,16,16,Overcast.,11,210,76,1013
602
+ 20210531,00:00,06:00,16,15,Overcast.,6,180,77,1014
603
+ 20210531,06:00,12:00,18,15,Overcast.,11,180,76,1015
604
+ 20210531,12:00,18:00,19,17,Overcast.,14,250,71,1014
605
+ 20210531,18:00,00:00,16,16,Overcast.,3,0,78,1015
606
+ 20210601,00:00,06:00,16,16,Overcast.,4,230,81,1015
607
+ 20210601,06:00,12:00,18,16,Partly sunny.,10,270,78,1015
608
+ 20210601,12:00,18:00,18,17,Partly sunny.,14,270,75,1014
609
+ 20210601,18:00,00:00,16,16,Passing clouds.,11,320,83,1014
610
+ 20210602,00:00,06:00,16,16,Low clouds.,13,340,88,1012
611
+ 20210602,06:00,12:00,18,16,Overcast.,10,290,87,1013
612
+ 20210602,12:00,18:00,19,16,Partly sunny.,15,290,76,1012
613
+ 20210602,18:00,00:00,16,15,Overcast.,5,220,81,1013
614
+ 20210603,00:00,06:00,16,15,Overcast.,2,250,83,1012
615
+ 20210603,06:00,12:00,17,16,Overcast.,11,270,79,1012
616
+ 20210603,12:00,18:00,18,17,Scattered clouds.,14,220,74,1012
617
+ 20210603,18:00,00:00,17,16,Overcast.,10,200,79,1014
618
+ 20210604,00:00,06:00,17,16,Overcast.,2,270,82,1013
619
+ 20210604,06:00,12:00,17,16,Overcast.,11,210,80,1015
620
+ 20210604,12:00,18:00,19,18,Passing clouds.,15,210,72,1014
621
+ 20210604,18:00,00:00,17,16,Overcast.,6,210,80,1015
622
+ 20210605,00:00,06:00,17,16,Overcast.,4,250,78,1014
623
+ 20210605,06:00,12:00,19,17,Passing clouds.,11,270,70,1015
624
+ 20210605,12:00,18:00,19,17,Scattered clouds.,15,270,70,1014
625
+ 20210605,18:00,00:00,16,16,Overcast.,7,260,79,1014
626
+ 20210606,00:00,06:00,16,16,Overcast.,3,180,77,1013
627
+ 20210606,06:00,12:00,18,16,Overcast.,11,180,70,1014
628
+ 20210606,12:00,18:00,19,17,Scattered clouds.,15,230,67,1013
629
+ 20210606,18:00,00:00,17,16,Overcast.,9,0,73,1013
630
+ 20210607,00:00,06:00,16,16,Overcast.,9,220,76,1012
631
+ 20210607,06:00,12:00,17,15,Mostly cloudy.,17,190,79,1014
632
+ 20210607,12:00,18:00,18,17,Broken clouds.,15,230,69,1014
633
+ 20210607,18:00,00:00,16,16,Mostly cloudy.,12,220,72,1014
634
+ 20210608,00:00,06:00,16,16,Overcast.,8,260,71,1014
635
+ 20210608,06:00,12:00,19,16,Partly sunny.,8,260,65,1017
636
+ 20210608,12:00,18:00,19,19,Scattered clouds.,19,300,61,1017
637
+ 20210608,18:00,00:00,18,17,Passing clouds.,16,320,77,1017
638
+ 20210609,00:00,06:00,17,16,Passing clouds.,14,330,82,1016
639
+ 20210609,06:00,12:00,19,17,Partly sunny.,16,310,74,1018
640
+ 20210609,12:00,18:00,20,18,Partly sunny.,23,310,62,1019
641
+ 20210609,18:00,00:00,18,16,Passing clouds.,18,300,70,1020
642
+ 20210610,00:00,06:00,16,13,Passing clouds.,6,330,76,1019
643
+ 20210610,06:00,12:00,20,15,Passing clouds.,11,190,68,1019
644
+ 20210610,12:00,18:00,21,19,Sunny.,22,290,57,1017
645
+ 20210610,18:00,00:00,18,16,Clear.,13,310,69,1016
646
+ 20210611,00:00,06:00,16,12,Clear.,3,310,86,1014
647
+ 20210611,06:00,12:00,22,15,Passing clouds.,8,200,67,1014
648
+ 20210611,12:00,18:00,21,19,Sunny.,17,280,62,1013
649
+ 20210611,18:00,00:00,19,17,Clear.,12,320,74,1013
650
+ 20210612,00:00,06:00,17,14,Passing clouds.,1,310,90,1011
651
+ 20210612,06:00,12:00,19,16,Passing clouds.,9,210,80,1011
652
+ 20210612,12:00,18:00,21,19,Passing clouds.,15,210,73,1011
653
+ 20210612,18:00,00:00,19,16,Passing clouds.,3,240,82,1011
654
+ 20210613,00:00,06:00,17,16,Clear.,1,120,89,1011
655
+ 20210613,06:00,12:00,20,17,Passing clouds.,8,0,75,1013
656
+ 20210613,12:00,18:00,21,20,Sunny.,16,300,66,1012
657
+ 20210613,18:00,00:00,19,17,Passing clouds.,15,310,81,1013
658
+ 20210614,00:00,06:00,17,17,Low clouds.,10,340,86,1012
659
+ 20210614,06:00,12:00,21,17,Passing clouds.,13,340,79,1013
660
+ 20210614,12:00,18:00,22,20,Scattered clouds.,15,290,71,1012
661
+ 20210614,18:00,00:00,20,17,Passing clouds.,5,310,83,1012
662
+ 20210615,00:00,06:00,18,18,Passing clouds.,9,330,89,1011
663
+ 20210615,06:00,12:00,23,18,Partly sunny.,11,310,75,1012
664
+ 20210615,12:00,18:00,27,22,Partly sunny.,19,300,57,1009
665
+ 20210615,18:00,00:00,21,17,Fog.,15,170,88,1011
666
+ 20210616,00:00,06:00,17,16,Fog.,11,190,95,1011
667
+ 20210616,06:00,12:00,18,17,Fog.,14,180,91,1011
668
+ 20210616,12:00,18:00,20,18,Broken clouds.,16,210,83,1010
669
+ 20210616,18:00,00:00,18,17,Low clouds.,7,200,90,1010
670
+ 20210617,00:00,06:00,17,16,Fog.,2,160,95,1009
671
+ 20210617,06:00,12:00,19,17,Low clouds.,11,150,92,1010
672
+ 20210617,12:00,18:00,19,18,Partly sunny.,16,210,81,1009
673
+ 20210617,18:00,00:00,18,17,Low clouds.,5,230,88,1009
674
+ 20210618,00:00,06:00,17,17,Low clouds.,6,200,90,1009
675
+ 20210618,06:00,12:00,19,17,Low clouds.,9,170,88,1010
676
+ 20210618,12:00,18:00,19,18,Partly sunny.,12,210,78,1009
677
+ 20210618,18:00,00:00,18,17,Low clouds.,7,210,84,1009
678
+ 20210619,00:00,06:00,17,17,Low clouds.,3,280,86,1009
679
+ 20210619,06:00,12:00,19,17,Overcast.,9,210,83,1010
680
+ 20210619,12:00,18:00,21,20,Passing clouds.,16,300,71,1009
681
+ 20210619,18:00,00:00,19,17,Passing clouds.,11,310,82,1009
682
+ 20210620,00:00,06:00,17,17,Low clouds.,8,310,87,1009
683
+ 20210620,06:00,12:00,20,17,Overcast.,10,250,83,1012
684
+ 20210620,12:00,18:00,21,19,Scattered clouds.,13,240,73,1012
685
+ 20210620,18:00,00:00,18,17,Passing clouds.,7,290,79,1013
686
+ 20210621,00:00,06:00,17,17,Overcast.,5,0,81,1013
687
+ 20210621,06:00,12:00,21,17,Overcast.,12,290,74,1015
688
+ 20210621,12:00,18:00,21,19,Scattered clouds.,19,300,69,1015
689
+ 20210621,18:00,00:00,19,18,Passing clouds.,11,280,79,1014
690
+ 20210622,00:00,06:00,18,18,Overcast.,15,320,80,1013
691
+ 20210622,06:00,12:00,21,18,Broken clouds.,19,330,76,1013
692
+ 20210622,12:00,18:00,20,19,Partly sunny.,21,300,76,1013
693
+ 20210622,18:00,00:00,19,18,Passing clouds.,16,320,82,1012
694
+ 20210623,00:00,06:00,18,18,Passing clouds.,11,320,86,1012
695
+ 20210623,06:00,12:00,22,18,Broken clouds.,17,290,84,1013
696
+ 20210623,12:00,18:00,22,20,Partly sunny.,17,290,73,1014
697
+ 20210623,18:00,00:00,19,18,Partly cloudy.,12,310,79,1016
698
+ 20210624,00:00,06:00,18,18,Passing clouds.,9,310,79,1015
699
+ 20210624,06:00,12:00,22,18,Partly sunny.,18,290,71,1016
700
+ 20210624,12:00,18:00,22,20,Scattered clouds.,22,300,66,1015
701
+ 20210624,18:00,00:00,19,18,Passing clouds.,16,330,76,1015
702
+ 20210625,00:00,06:00,18,17,Passing clouds.,11,320,78,1014
703
+ 20210625,06:00,12:00,20,17,Overcast.,11,350,78,1014
704
+ 20210625,12:00,18:00,21,21,Passing clouds.,23,320,68,1013
705
+ 20210625,18:00,00:00,20,18,Passing clouds.,18,320,83,1012
706
+ 20210626,00:00,06:00,18,17,Overcast.,11,330,82,1012
707
+ 20210626,06:00,12:00,20,17,Passing clouds.,13,280,76,1011
708
+ 20210626,12:00,18:00,21,19,Passing clouds.,14,270,69,1009
709
+ 20210626,18:00,00:00,19,17,Passing clouds.,6,260,83,1008
710
+ 20210627,00:00,06:00,17,17,Low clouds.,4,170,86,1007
711
+ 20210627,06:00,12:00,19,17,Partly sunny.,11,210,83,1007
712
+ 20210627,12:00,18:00,19,18,Low clouds.,15,210,81,1007
713
+ 20210627,18:00,00:00,18,17,Low clouds.,6,170,87,1006
714
+ 20210628,00:00,06:00,17,17,Low clouds.,2,210,91,1006
715
+ 20210628,06:00,12:00,18,17,Fog.,8,200,89,1006
716
+ 20210628,12:00,18:00,20,18,Low clouds.,16,200,81,1007
717
+ 20210628,18:00,00:00,18,18,Low clouds.,11,170,85,1008
718
+ 20210629,00:00,06:00,18,17,Low clouds.,8,200,88,1008
719
+ 20210629,06:00,12:00,19,18,Overcast.,14,180,85,1010
720
+ 20210629,12:00,18:00,20,19,Overcast.,15,210,78,1010
721
+ 20210629,18:00,00:00,18,18,Overcast.,7,210,85,1011
722
+ 20210630,00:00,06:00,18,18,Overcast.,4,190,86,1012
723
+ 20210630,06:00,12:00,19,18,Overcast.,6,210,85,1013
724
+ 20210630,12:00,18:00,20,19,Partly sunny.,13,210,80,1012
725
+ 20210630,18:00,00:00,18,17,Overcast.,5,0,85,1013
726
+ 20210701,00:00,06:00,18,17,Low clouds.,4,250,88,1013
727
+ 20210701,06:00,12:00,22,18,Overcast.,15,300,78,1013
728
+ 20210701,12:00,18:00,22,20,Scattered clouds.,17,280,71,1012
729
+ 20210701,18:00,00:00,19,18,Passing clouds.,9,300,83,1012
730
+ 20210702,00:00,06:00,18,18,Overcast.,7,0,86,1012
731
+ 20210702,06:00,12:00,22,18,Overcast.,10,270,80,1013
732
+ 20210702,12:00,18:00,21,19,Broken clouds.,13,240,77,1013
733
+ 20210702,18:00,00:00,20,18,Partly cloudy.,15,300,84,1012
734
+ 20210703,00:00,06:00,18,18,Passing clouds.,7,300,87,1012
735
+ 20210703,06:00,12:00,21,18,Overcast.,8,270,84,1014
736
+ 20210703,12:00,18:00,21,19,Partly sunny.,15,260,77,1013
737
+ 20210703,18:00,00:00,18,18,Partly sunny.,5,280,83,1014
738
+ 20210704,00:00,06:00,18,18,Overcast.,5,300,84,1014
739
+ 20210704,06:00,12:00,21,18,Overcast.,11,260,76,1015
740
+ 20210704,12:00,18:00,22,20,Scattered clouds.,19,300,68,1014
741
+ 20210704,18:00,00:00,19,18,Scattered clouds.,17,330,81,1014
742
+ 20210705,00:00,06:00,19,18,Overcast.,9,320,84,1014
743
+ 20210705,06:00,12:00,22,18,Overcast.,13,330,78,1016
744
+ 20210705,12:00,18:00,22,21,Passing clouds.,24,310,68,1014
745
+ 20210705,18:00,00:00,19,18,Passing clouds.,18,320,82,1014
746
+ 20210706,00:00,06:00,18,18,Overcast.,8,300,82,1014
747
+ 20210706,06:00,12:00,21,18,Passing clouds.,13,280,74,1015
748
+ 20210706,12:00,18:00,21,19,Passing clouds.,16,290,68,1013
749
+ 20210706,18:00,00:00,19,18,Passing clouds.,7,260,80,1012
750
+ 20210707,00:00,06:00,17,17,Passing clouds.,7,200,85,1011
751
+ 20210707,06:00,12:00,19,17,Overcast.,7,210,83,1011
752
+ 20210707,12:00,18:00,21,19,Broken clouds.,14,200,74,1010
753
+ 20210707,18:00,00:00,19,18,Passing clouds.,3,210,81,1010
754
+ 20210708,00:00,06:00,18,18,Passing clouds.,6,170,87,1010
755
+ 20210708,06:00,12:00,21,18,Partly sunny.,11,210,80,1010
756
+ 20210708,12:00,18:00,21,21,Partly sunny.,14,210,76,1011
757
+ 20210708,18:00,00:00,19,19,Passing clouds.,4,200,82,1011
758
+ 20210709,00:00,06:00,19,19,Passing clouds.,7,310,86,1011
759
+ 20210709,06:00,12:00,22,19,Scattered clouds.,9,280,78,1013
760
+ 20210709,12:00,18:00,23,22,Passing clouds.,12,270,71,1013
761
+ 20210709,18:00,00:00,21,20,Passing clouds.,7,260,82,1013
762
+ 20210710,00:00,06:00,20,19,Clear.,3,320,88,1013
763
+ 20210710,06:00,12:00,24,21,Scattered clouds.,11,320,76,1013
764
+ 20210710,12:00,18:00,23,21,Scattered clouds.,13,220,76,1013
765
+ 20210710,18:00,00:00,21,19,Passing clouds.,10,210,86,1014
766
+ 20210711,00:00,06:00,20,19,Overcast.,7,200,86,1013
767
+ 20210711,06:00,12:00,21,19,Broken clouds.,10,210,79,1012
768
+ 20210711,12:00,18:00,22,21,Scattered clouds.,16,210,72,1012
769
+ 20210711,18:00,00:00,20,19,Passing clouds.,5,210,79,1012
770
+ 20210712,00:00,06:00,19,19,Overcast.,3,210,80,1012
771
+ 20210712,06:00,12:00,22,19,Overcast.,12,190,76,1013
772
+ 20210712,12:00,18:00,22,21,Scattered clouds.,15,200,72,1012
773
+ 20210712,18:00,00:00,20,19,Overcast.,7,230,78,1012
774
+ 20210713,00:00,06:00,20,19,Passing clouds.,5,280,81,1012
775
+ 20210713,06:00,12:00,22,20,Partly sunny.,10,210,78,1013
776
+ 20210713,12:00,18:00,23,21,Scattered clouds.,15,250,73,1013
777
+ 20210713,18:00,00:00,21,19,Passing clouds.,7,260,83,1013
778
+ 20210714,00:00,06:00,20,19,Passing clouds.,1,250,86,1014
779
+ 20210714,06:00,12:00,22,19,Overcast.,11,210,81,1015
780
+ 20210714,12:00,18:00,22,21,Passing clouds.,13,200,74,1015
781
+ 20210714,18:00,00:00,21,20,Passing clouds.,7,270,80,1015
782
+ 20210715,00:00,06:00,20,19,Overcast.,3,210,84,1015
783
+ 20210715,06:00,12:00,22,20,Passing clouds.,11,250,76,1016
784
+ 20210715,12:00,18:00,23,22,Passing clouds.,15,260,69,1014
785
+ 20210715,18:00,00:00,21,20,Passing clouds.,10,260,77,1014
786
+ 20210716,00:00,06:00,20,20,Passing clouds.,10,280,79,1013
787
+ 20210716,06:00,12:00,23,20,Passing clouds.,11,280,73,1014
788
+ 20210716,12:00,18:00,24,21,Scattered clouds.,17,280,68,1013
789
+ 20210716,18:00,00:00,21,19,Passing clouds.,5,260,79,1013
790
+ 20210717,00:00,06:00,20,19,Overcast.,3,250,82,1013
791
+ 20210717,06:00,12:00,23,20,Passing clouds.,9,0,74,1014
792
+ 20210717,12:00,18:00,24,22,Scattered clouds.,14,270,70,1013
793
+ 20210717,18:00,00:00,21,21,Partly cloudy.,12,290,79,1014
794
+ 20210718,00:00,06:00,21,21,Passing clouds.,8,290,81,1014
795
+ 20210718,06:00,12:00,26,21,Scattered clouds.,10,290,71,1015
796
+ 20210718,12:00,18:00,25,23,Scattered clouds.,14,280,69,1014
797
+ 20210718,18:00,00:00,23,22,Passing clouds.,8,290,74,1016
798
+ 20210719,00:00,06:00,22,21,Passing clouds.,5,330,78,1016
799
+ 20210719,06:00,12:00,25,21,Passing clouds.,11,290,75,1017
800
+ 20210719,12:00,18:00,26,24,Passing clouds.,16,290,68,1016
801
+ 20210719,18:00,00:00,23,21,Passing clouds.,10,280,73,1016
802
+ 20210720,00:00,06:00,21,21,Passing clouds.,6,320,86,1016
803
+ 20210720,06:00,12:00,24,21,Scattered clouds.,12,330,75,1016
804
+ 20210720,12:00,18:00,27,23,Scattered clouds.,19,290,62,1013
805
+ 20210720,18:00,00:00,23,21,Scattered clouds.,13,330,78,1012
806
+ 20210721,00:00,06:00,21,20,Passing clouds.,6,280,84,1012
807
+ 20210721,06:00,12:00,24,21,Scattered clouds.,9,270,74,1012
808
+ 20210721,12:00,18:00,24,22,Scattered clouds.,14,260,72,1011
809
+ 20210721,18:00,00:00,21,19,Passing clouds.,9,190,85,1012
810
+ 20210722,00:00,06:00,20,19,Partly cloudy.,7,180,90,1012
811
+ 20210722,06:00,12:00,23,19,Partly sunny.,13,180,82,1014
812
+ 20210722,12:00,18:00,22,21,Partly sunny.,15,210,74,1015
813
+ 20210722,18:00,00:00,21,19,Broken clouds.,8,230,79,1016
814
+ 20210723,00:00,06:00,19,19,Passing clouds.,5,190,84,1016
815
+ 20210723,06:00,12:00,22,19,Overcast.,9,180,82,1017
816
+ 20210723,12:00,18:00,23,21,Partly sunny.,13,190,72,1017
817
+ 20210723,18:00,00:00,21,19,Scattered clouds.,6,260,80,1017
818
+ 20210724,00:00,06:00,20,19,Overcast.,3,270,83,1016
819
+ 20210724,06:00,12:00,22,20,Overcast.,12,210,78,1017
820
+ 20210724,12:00,18:00,22,21,Partly sunny.,15,260,72,1015
821
+ 20210724,18:00,00:00,21,19,Passing clouds.,10,250,79,1015
822
+ 20210725,00:00,06:00,20,19,Overcast.,6,300,80,1015
823
+ 20210725,06:00,12:00,22,19,Overcast.,8,210,78,1015
824
+ 20210725,12:00,18:00,22,21,Broken clouds.,12,250,73,1014
825
+ 20210725,18:00,00:00,21,21,Overcast.,12,280,79,1013
826
+ 20210726,00:00,06:00,21,20,Overcast.,9,270,82,1013
827
+ 20210726,06:00,12:00,22,20,Mostly cloudy.,9,250,80,1014
828
+ 20210726,12:00,18:00,23,21,Overcast.,16,290,75,1014
829
+ 20210726,18:00,00:00,21,20,Low clouds.,14,340,85,1014
830
+ 20210727,00:00,06:00,21,20,Low clouds.,15,340,85,1014
831
+ 20210727,06:00,12:00,22,21,Overcast.,15,310,82,1015
832
+ 20210727,12:00,18:00,23,23,Scattered clouds.,22,320,72,1015
833
+ 20210727,18:00,00:00,22,20,Passing clouds.,19,320,81,1015
834
+ 20210728,00:00,06:00,20,19,Passing clouds.,12,330,86,1015
835
+ 20210728,06:00,12:00,23,19,Scattered clouds.,15,310,78,1016
836
+ 20210728,12:00,18:00,24,23,Scattered clouds.,20,320,70,1015
837
+ 20210728,18:00,00:00,22,20,Passing clouds.,16,320,82,1014
838
+ 20210729,00:00,06:00,20,19,Passing clouds.,12,340,90,1013
839
+ 20210729,06:00,12:00,23,19,Scattered clouds.,19,330,80,1013
840
+ 20210729,12:00,18:00,24,22,Scattered clouds.,21,320,70,1012
841
+ 20210729,18:00,00:00,22,20,Passing clouds.,13,320,83,1012
842
+ 20210730,00:00,06:00,19,18,Passing clouds.,13,320,87,1012
843
+ 20210730,06:00,12:00,22,18,Broken clouds.,17,330,81,1013
844
+ 20210730,12:00,18:00,23,22,Broken clouds.,20,320,70,1013
845
+ 20210730,18:00,00:00,21,19,Partly cloudy.,15,320,82,1015
846
+ 20210731,00:00,06:00,19,17,Fog.,16,340,93,1015
847
+ 20210731,06:00,12:00,22,17,Fog.,19,330,86,1017
848
+ 20210731,12:00,18:00,23,22,Scattered clouds.,22,310,71,1016
849
+ 20210731,18:00,00:00,21,18,Passing clouds.,16,310,85,1016
850
+ 20210801,00:00,06:00,18,17,Low clouds.,12,320,93,1017
851
+ 20210801,06:00,12:00,23,17,Passing clouds.,14,10,79,1018
852
+ 20210801,12:00,18:00,25,23,Passing clouds.,25,320,66,1016
853
+ 20210801,18:00,00:00,22,20,Passing clouds.,21,330,76,1016
854
+ 20210802,00:00,06:00,19,18,Clear.,11,330,83,1016
855
+ 20210802,06:00,12:00,24,17,Passing clouds.,18,320,77,1017
856
+ 20210802,12:00,18:00,26,24,Passing clouds.,23,320,62,1015
857
+ 20210802,18:00,00:00,23,21,Clear.,17,320,74,1015
858
+ 20210803,00:00,06:00,20,18,Clear.,8,340,85,1014
859
+ 20210803,06:00,12:00,22,18,Fog.,16,310,87,1015
860
+ 20210803,12:00,18:00,23,22,Passing clouds.,20,300,69,1013
861
+ 20210803,18:00,00:00,21,19,Passing clouds.,14,310,84,1012
862
+ 20210804,00:00,06:00,19,18,Passing clouds.,9,320,88,1012
863
+ 20210804,06:00,12:00,22,18,Passing clouds.,11,300,80,1013
864
+ 20210804,12:00,18:00,23,21,Passing clouds.,19,290,69,1012
865
+ 20210804,18:00,00:00,21,18,Passing clouds.,11,310,86,1012
866
+ 20210805,00:00,06:00,18,18,Passing clouds.,6,280,88,1012
867
+ 20210805,06:00,12:00,22,18,Partly sunny.,9,320,80,1013
868
+ 20210805,12:00,18:00,23,20,Passing clouds.,13,200,74,1013
869
+ 20210805,18:00,00:00,19,18,Passing clouds.,9,190,86,1013
870
+ 20210806,00:00,06:00,18,17,Fog.,5,140,92,1013
871
+ 20210806,06:00,12:00,19,17,Fog.,14,140,91,1014
872
+ 20210806,12:00,18:00,21,19,Partly sunny.,14,200,75,1013
873
+ 20210806,18:00,00:00,19,18,Overcast.,8,210,82,1013
874
+ 20210807,00:00,06:00,18,17,Overcast.,7,130,87,1013
875
+ 20210807,06:00,12:00,21,17,Fog.,9,200,80,1014
876
+ 20210807,12:00,18:00,21,20,Passing clouds.,14,200,71,1013
877
+ 20210807,18:00,00:00,19,18,Passing clouds.,7,270,80,1012
878
+ 20210808,00:00,06:00,18,18,Overcast.,4,220,85,1012
879
+ 20210808,06:00,12:00,21,18,Overcast.,10,160,80,1014
880
+ 20210808,12:00,18:00,22,21,Passing clouds.,15,260,68,1012
881
+ 20210808,18:00,00:00,20,19,Passing clouds.,3,200,80,1013
882
+ 20210809,00:00,06:00,19,18,Passing clouds.,5,260,84,1013
883
+ 20210809,06:00,12:00,23,19,Passing clouds.,8,200,76,1013
884
+ 20210809,12:00,18:00,24,23,Scattered clouds.,17,280,67,1012
885
+ 20210809,18:00,00:00,22,21,Passing clouds.,11,320,78,1012
886
+ 20210810,00:00,06:00,21,21,Passing clouds.,7,340,81,1013
887
+ 20210810,06:00,12:00,23,21,Partly sunny.,12,310,76,1014
888
+ 20210810,12:00,18:00,24,24,Broken clouds.,19,290,66,1012
889
+ 20210810,18:00,00:00,22,20,Partly cloudy.,9,220,80,1013
890
+ 20210811,00:00,06:00,22,21,Partly cloudy.,12,330,84,1013
891
+ 20210811,06:00,12:00,28,22,Scattered clouds.,12,320,68,1013
892
+ 20210811,12:00,18:00,27,24,Partly sunny.,14,290,62,1013
893
+ 20210811,18:00,00:00,23,23,Passing clouds.,9,340,76,1014
894
+ 20210812,00:00,06:00,23,21,Passing clouds.,6,320,84,1014
895
+ 20210812,06:00,12:00,28,22,Passing clouds.,6,320,70,1015
896
+ 20210812,12:00,18:00,28,27,Passing clouds.,13,290,54,1014
897
+ 20210812,18:00,00:00,25,21,Clear.,6,210,80,1015
898
+ 20210813,00:00,06:00,21,19,Fog.,2,160,92,1016
899
+ 20210813,06:00,12:00,27,20,Passing clouds.,8,210,74,1017
900
+ 20210813,12:00,18:00,27,25,Sunny.,13,270,52,1017
901
+ 20210813,18:00,00:00,24,22,Passing clouds.,7,310,76,1018
902
+ 20210814,00:00,06:00,22,20,Fog.,2,150,88,1018
903
+ 20210814,06:00,12:00,27,22,Scattered clouds.,10,300,72,1018
904
+ 20210814,12:00,18:00,27,23,Partly sunny.,24,320,62,1016
905
+ 20210814,18:00,00:00,22,21,Passing clouds.,11,320,76,1016
906
+ 20210815,00:00,06:00,21,21,Clear.,8,340,80,1015
907
+ 20210815,06:00,12:00,25,21,Broken clouds.,10,310,70,1014
908
+ 20210815,12:00,18:00,26,23,Broken clouds.,15,290,69,1012
909
+ 20210815,18:00,00:00,23,21,Partly cloudy.,6,260,79,1011
910
+ 20210816,00:00,06:00,21,20,Fog.,4,160,86,1010
911
+ 20210816,06:00,12:00,24,20,Partly sunny.,8,180,81,1011
912
+ 20210816,12:00,18:00,24,23,Scattered clouds.,14,190,72,1009
913
+ 20210816,18:00,00:00,23,22,Passing clouds.,5,200,78,1010
914
+ 20210817,00:00,06:00,22,21,Passing clouds.,2,200,84,1010
915
+ 20210817,06:00,12:00,23,22,Overcast.,7,160,80,1012
916
+ 20210817,12:00,18:00,24,23,Partly sunny.,11,180,74,1011
917
+ 20210817,18:00,00:00,23,22,Overcast.,3,210,75,1011
918
+ 20210818,00:00,06:00,22,22,Passing clouds.,5,220,78,1011
919
+ 20210818,06:00,12:00,24,22,Overcast.,11,150,73,1013
920
+ 20210818,12:00,18:00,25,23,Broken clouds.,13,180,72,1012
921
+ 20210818,18:00,00:00,23,22,Overcast.,4,200,80,1012
922
+ 20210819,00:00,06:00,22,22,Partly cloudy.,7,280,79,1012
923
+ 20210819,06:00,12:00,24,22,Broken clouds.,16,290,71,1013
924
+ 20210819,12:00,18:00,25,22,Passing clouds.,18,270,66,1012
925
+ 20210819,18:00,00:00,22,21,Passing clouds.,10,270,72,1012
926
+ 20210820,00:00,06:00,21,21,Partly cloudy.,8,300,73,1011
927
+ 20210820,06:00,12:00,24,21,Partly sunny.,11,310,68,1011
928
+ 20210820,12:00,18:00,24,22,Partly sunny.,16,240,64,1010
929
+ 20210820,18:00,00:00,22,22,Overcast.,9,270,67,1009
930
+ 20210821,00:00,06:00,22,21,Overcast.,9,260,69,1009
931
+ 20210821,06:00,12:00,24,20,Partly sunny.,6,290,66,1010
932
+ 20210821,12:00,18:00,24,23,Passing clouds.,18,280,54,1009
933
+ 20210821,18:00,00:00,22,22,Overcast.,11,280,60,1009
934
+ 20210822,00:00,06:00,22,21,Overcast.,8,280,63,1010
935
+ 20210822,06:00,12:00,23,21,Overcast.,12,0,70,1010
936
+ 20210822,12:00,18:00,24,23,Partly sunny.,22,310,60,1009
937
+ 20210822,18:00,00:00,22,22,Overcast.,18,320,66,1009
938
+ 20210823,00:00,06:00,22,21,Overcast.,8,340,69,1010
939
+ 20210823,06:00,12:00,24,21,Partly sunny.,15,300,67,1012
940
+ 20210823,12:00,18:00,24,23,Passing clouds.,22,300,61,1011
941
+ 20210823,18:00,00:00,22,21,Passing clouds.,11,310,70,1012
942
+ 20210824,00:00,06:00,21,20,Passing clouds.,7,20,76,1012
943
+ 20210824,06:00,12:00,24,21,Partly sunny.,11,30,68,1013
944
+ 20210824,12:00,18:00,24,23,Passing clouds.,20,300,64,1013
945
+ 20210824,18:00,00:00,22,21,Passing clouds.,16,320,76,1013
946
+ 20210825,00:00,06:00,21,21,Passing clouds.,12,340,80,1013
947
+ 20210825,06:00,12:00,24,21,Partly sunny.,16,310,64,1014
948
+ 20210825,12:00,18:00,26,24,Scattered clouds.,26,310,65,1013
949
+ 20210825,18:00,00:00,23,22,Passing clouds.,19,340,78,1012
950
+ 20210826,00:00,06:00,22,21,Passing clouds.,10,350,83,1011
951
+ 20210826,06:00,12:00,27,21,Passing clouds.,16,320,68,1011
952
+ 20210826,12:00,18:00,27,24,Sunny.,21,310,63,1009
953
+ 20210826,18:00,00:00,23,22,Passing clouds.,15,320,82,1009
954
+ 20210827,00:00,06:00,21,21,Passing clouds.,9,340,86,1008
955
+ 20210827,06:00,12:00,26,21,Passing clouds.,15,310,74,1008
956
+ 20210827,12:00,18:00,26,24,Passing clouds.,34,300,65,1006
957
+ 20210827,18:00,00:00,23,21,Passing clouds.,12,310,80,1006
958
+ 20210828,00:00,06:00,21,20,Passing clouds.,4,320,84,1006
959
+ 20210828,06:00,12:00,24,20,Fog.,10,310,80,1008
960
+ 20210828,12:00,18:00,24,21,Scattered clouds.,12,260,72,1009
961
+ 20210828,18:00,00:00,21,21,Clear.,13,340,77,1008
962
+ 20210829,00:00,06:00,21,21,Passing clouds.,14,340,83,1008
963
+ 20210829,06:00,12:00,24,20,Low clouds.,18,340,77,1009
964
+ 20210829,12:00,18:00,24,22,Broken clouds.,25,310,73,1007
965
+ 20210829,18:00,00:00,22,21,Passing clouds.,14,310,79,1008
966
+ 20210830,00:00,06:00,19,18,Fog.,5,160,89,1008
967
+ 20210830,06:00,12:00,22,18,Overcast.,9,190,83,1009
968
+ 20210830,12:00,18:00,24,21,Partly sunny.,14,200,70,1008
969
+ 20210830,18:00,00:00,22,20,Partly cloudy.,8,210,77,1008
970
+ 20210831,00:00,06:00,21,19,Passing clouds.,7,220,82,1008
971
+ 20210831,06:00,12:00,21,19,Overcast.,10,190,81,1010
972
+ 20210831,12:00,18:00,22,21,Broken clouds.,13,200,73,1008
973
+ 20210831,18:00,00:00,21,20,Passing clouds.,11,170,82,1009
974
+ 20210901,00:00,06:00,21,20,Passing clouds.,6,160,79,1009
975
+ 20210901,06:00,12:00,22,20,Partly sunny.,11,190,75,1011
976
+ 20210901,12:00,18:00,24,23,Scattered clouds.,15,210,64,1011
977
+ 20210901,18:00,00:00,22,21,Passing clouds.,8,280,70,1012
978
+ 20210902,00:00,06:00,21,21,Passing clouds.,7,260,68,1012
979
+ 20210902,06:00,12:00,24,21,Overcast.,8,270,62,1014
980
+ 20210902,12:00,18:00,24,23,Scattered clouds.,19,290,60,1012
981
+ 20210902,18:00,00:00,22,21,Passing clouds.,12,310,71,1013
982
+ 20210903,00:00,06:00,22,21,Passing clouds.,12,320,74,1013
983
+ 20210903,06:00,12:00,23,20,Overcast.,12,310,74,1013
984
+ 20210903,12:00,18:00,24,21,Partly sunny.,20,290,70,1012
985
+ 20210903,18:00,00:00,21,21,Passing clouds.,14,320,78,1012
986
+ 20210904,00:00,06:00,20,19,Low clouds.,9,320,84,1012
987
+ 20210904,06:00,12:00,26,19,Passing clouds.,15,320,72,1012
988
+ 20210904,12:00,18:00,26,26,Passing clouds.,27,320,59,1010
989
+ 20210904,18:00,00:00,26,23,Passing clouds.,14,340,48,1010
990
+ 20210905,00:00,06:00,22,21,Clear.,11,320,63,1011
991
+ 20210905,06:00,12:00,23,20,Passing clouds.,11,200,75,1012
992
+ 20210905,12:00,18:00,23,21,Scattered clouds.,15,180,78,1011
993
+ 20210905,18:00,00:00,21,20,Fog.,10,170,87,1012
994
+ 20210906,00:00,06:00,21,20,Low clouds.,8,190,88,1013
995
+ 20210906,06:00,12:00,23,20,Low clouds.,10,210,80,1014
996
+ 20210906,12:00,18:00,23,22,Overcast.,12,170,77,1013
997
+ 20210906,18:00,00:00,21,21,Passing clouds.,2,170,86,1014
998
+ 20210907,00:00,06:00,22,21,Passing clouds.,3,170,83,1014
999
+ 20210907,06:00,12:00,23,21,Overcast.,9,210,76,1015
1000
+ 20210907,12:00,18:00,26,24,Passing clouds.,12,280,65,1012
1001
+ 20210907,18:00,00:00,23,22,Passing clouds.,9,320,76,1012
1002
+ 20210908,00:00,06:00,22,21,Passing clouds.,4,320,82,1012
1003
+ 20210908,06:00,12:00,25,22,Partly sunny.,8,150,77,1013
1004
+ 20210908,12:00,18:00,26,24,Passing clouds.,28,320,64,1009
1005
+ 20210908,18:00,00:00,23,22,Passing clouds.,12,320,77,1011
1006
+ 20210909,00:00,06:00,22,21,Passing clouds.,7,350,82,1010
1007
+ 20210909,06:00,12:00,25,21,Scattered clouds.,8,270,75,1012
1008
+ 20210909,12:00,18:00,27,25,Scattered clouds.,12,290,62,1010
1009
+ 20210909,18:00,00:00,23,22,Partly cloudy.,11,300,80,1011
1010
+ 20210910,00:00,06:00,22,21,Passing clouds.,13,320,85,1011
1011
+ 20210910,06:00,12:00,26,22,Scattered clouds.,13,330,76,1013
1012
+ 20210910,12:00,18:00,26,24,Passing clouds.,19,300,66,844
1013
+ 20210910,18:00,00:00,23,22,Passing clouds.,9,320,79,1014
1014
+ 20210911,00:00,06:00,22,21,Clear.,11,340,86,1013
1015
+ 20210911,06:00,12:00,27,21,Passing clouds.,16,320,71,1014
1016
+ 20210911,12:00,18:00,28,25,Passing clouds.,25,320,59,1012
1017
+ 20210911,18:00,00:00,24,23,Clear.,14,310,74,1012
1018
+ 20210912,00:00,06:00,22,21,Clear.,9,340,83,1012
1019
+ 20210912,06:00,12:00,25,21,Sunny.,25,330,70,1013
1020
+ 20210912,12:00,18:00,26,23,Passing clouds.,33,320,67,1012
1021
+ 20210912,18:00,00:00,22,21,Passing clouds.,16,320,82,1012
1022
+ 20210913,00:00,06:00,21,19,Low clouds.,14,340,83,1012
1023
+ 20210913,06:00,12:00,23,19,Passing clouds.,17,310,76,1012
1024
+ 20210913,12:00,18:00,23,22,Passing clouds.,18,290,69,1011
1025
+ 20210913,18:00,00:00,21,18,Passing clouds.,6,310,82,1011
1026
+ 20210914,00:00,06:00,19,18,Passing clouds.,4,180,85,1012
1027
+ 20210914,06:00,12:00,22,18,Overcast.,8,190,77,1014
1028
+ 20210914,12:00,18:00,23,21,Passing clouds.,14,220,68,1013
1029
+ 20210914,18:00,00:00,20,19,Passing clouds.,6,260,76,1013
1030
+ 20210915,00:00,06:00,19,18,Passing clouds.,6,190,78,1013
1031
+ 20210915,06:00,12:00,22,18,Passing clouds.,11,230,70,1014
1032
+ 20210915,12:00,18:00,23,21,Passing clouds.,18,290,64,1012
1033
+ 20210915,18:00,00:00,20,19,Passing clouds.,9,290,73,1012
1034
+ 20210916,00:00,06:00,19,19,Passing clouds.,7,310,69,1011
1035
+ 20210916,06:00,12:00,22,19,Passing clouds.,12,270,64,1012
1036
+ 20210916,12:00,18:00,22,21,Passing clouds.,20,290,62,1011
1037
+ 20210916,18:00,00:00,19,19,Passing clouds.,10,310,72,1012
1038
+ 20210917,00:00,06:00,19,18,Passing clouds.,5,170,74,1013
1039
+ 20210917,06:00,12:00,22,19,Partly sunny.,9,210,68,1015
1040
+ 20210917,12:00,18:00,23,21,Scattered clouds.,16,270,58,1015
1041
+ 20210917,18:00,00:00,20,20,Passing clouds.,13,310,67,1016
1042
+ 20210918,00:00,06:00,20,19,Overcast.,15,320,73,1016
1043
+ 20210918,06:00,12:00,22,20,Partly sunny.,15,330,68,1018
1044
+ 20210918,12:00,18:00,23,21,Passing clouds.,24,320,61,1016
1045
+ 20210918,18:00,00:00,20,19,Passing clouds.,15,330,73,1016
1046
+ 20210919,00:00,06:00,19,19,Overcast.,9,330,74,1015
1047
+ 20210919,06:00,12:00,21,19,Passing clouds.,9,260,66,1016
1048
+ 20210919,12:00,18:00,22,21,Sunny.,13,270,62,1013
1049
+ 20210919,18:00,00:00,19,16,Fog.,6,300,76,1013
1050
+ 20210920,00:00,06:00,18,16,Clear.,3,150,85,1012
1051
+ 20210920,06:00,12:00,21,17,Passing clouds.,6,180,77,1013
1052
+ 20210920,12:00,18:00,23,21,Passing clouds.,12,270,70,1013
1053
+ 20210920,18:00,00:00,20,19,Clear.,1,200,80,1015
1054
+ 20210921,00:00,06:00,20,19,Clear.,6,330,80,1016
1055
+ 20210921,06:00,12:00,28,19,Sunny.,9,320,62,1017
1056
+ 20210921,12:00,18:00,27,25,Passing clouds.,20,310,56,1016
1057
+ 20210921,18:00,00:00,24,22,Clear.,12,320,60,1017
1058
+ 20210922,00:00,06:00,22,21,Clear.,12,350,76,1017
1059
+ 20210922,06:00,12:00,28,21,Sunny.,14,350,63,1017
1060
+ 20210922,12:00,18:00,28,24,Passing clouds.,27,320,60,1015
1061
+ 20210922,18:00,00:00,24,22,Passing clouds.,12,0,58,1014
1062
+ 20210923,00:00,06:00,22,21,Passing clouds.,11,330,76,1013
1063
+ 20210923,06:00,12:00,24,21,Scattered clouds.,16,310,73,1013
1064
+ 20210923,12:00,18:00,24,21,Scattered clouds.,21,320,68,1011
1065
+ 20210923,18:00,00:00,21,19,Passing clouds.,12,320,79,1013
1066
+ 20210924,00:00,06:00,19,19,Passing clouds.,8,300,79,1013
1067
+ 20210924,06:00,12:00,23,19,Broken clouds.,8,300,71,1014
1068
+ 20210924,12:00,18:00,23,19,Partly sunny.,15,300,72,1013
1069
+ 20210924,18:00,00:00,20,19,Passing clouds.,6,270,83,1014
1070
+ 20210925,00:00,06:00,19,18,Passing clouds.,3,350,84,1014
1071
+ 20210925,06:00,12:00,22,19,Partly sunny.,5,200,82,1016
1072
+ 20210925,12:00,18:00,22,21,Partly sunny.,16,280,72,1015
1073
+ 20210925,18:00,00:00,21,20,Overcast.,11,310,77,1015
1074
+ 20210926,00:00,06:00,20,19,Overcast.,9,320,78,1016
1075
+ 20210926,06:00,12:00,21,19,Overcast.,10,310,77,1017
1076
+ 20210926,12:00,18:00,21,21,Overcast.,18,310,75,1016
1077
+ 20210926,18:00,00:00,20,19,Overcast.,15,330,74,1016
1078
+ 20210927,00:00,06:00,19,19,Overcast.,11,320,76,1016
1079
+ 20210927,06:00,12:00,20,19,More clouds than sun.,9,290,78,1017
1080
+ 20210927,12:00,18:00,21,19,Mostly cloudy.,14,300,72,1016
1081
+ 20210927,18:00,00:00,19,19,Overcast.,3,290,75,1016
1082
+ 20210928,00:00,06:00,19,19,Passing clouds.,2,340,73,1014
1083
+ 20210928,06:00,12:00,20,19,Overcast.,6,210,75,1014
1084
+ 20210928,12:00,18:00,21,19,Partly sunny.,10,190,69,1012
1085
+ 20210928,18:00,00:00,19,19,Passing clouds.,6,290,72,1012
1086
+ 20210929,00:00,06:00,18,18,Passing clouds.,11,160,82,1012
1087
+ 20210929,06:00,12:00,21,18,Passing clouds.,10,150,70,1013
1088
+ 20210929,12:00,18:00,22,21,Scattered clouds.,18,290,61,1011
1089
+ 20210929,18:00,00:00,21,19,Passing clouds.,12,340,76,1013
1090
+ 20210930,00:00,06:00,19,16,Clear.,3,10,84,1012
1091
+ 20210930,06:00,12:00,23,16,Sunny.,4,310,68,1013
1092
+ 20210930,12:00,18:00,24,23,Sunny.,18,300,64,1012
1093
+ 20210930,18:00,00:00,23,18,Clear.,4,330,70,1013
1094
+ 20211001,00:00,06:00,18,16,Clear.,3,80,82,1013
1095
+ 20211001,06:00,12:00,29,16,Sunny.,3,60,43,1014
1096
+ 20211001,12:00,18:00,30,26,Passing clouds.,21,340,29,1013
1097
+ 20211001,18:00,00:00,24,18,Clear.,8,350,45,1014
1098
+ 20211002,00:00,06:00,18,16,Clear.,1,20,62,1014
1099
+ 20211002,06:00,12:00,30,17,Partly sunny.,6,10,33,1014
1100
+ 20211002,12:00,18:00,28,24,Scattered clouds.,19,310,43,1012
1101
+ 20211002,18:00,00:00,21,19,Passing clouds.,5,200,84,1014
1102
+ 20211003,00:00,06:00,18,18,Clear.,7,20,72,1013
1103
+ 20211003,06:00,12:00,27,18,Scattered clouds.,3,190,40,1013
1104
+ 20211003,12:00,18:00,31,22,Scattered clouds.,10,190,38,1012
1105
+ 20211003,18:00,00:00,22,20,Passing clouds.,3,0,67,1012
1106
+ 20211004,00:00,06:00,21,19,Clear.,3,350,58,1012
1107
+ 20211004,06:00,12:00,26,19,Broken clouds.,3,180,46,1013
1108
+ 20211004,12:00,18:00,27,24,Partly sunny.,13,330,59,1012
1109
+ 20211004,18:00,00:00,22,20,Thunderstorms. Mostly cloudy.,10,170,82,1015
1110
+ 20211005,00:00,06:00,23,19,Partly cloudy.,15,50,76,1013
1111
+ 20211005,06:00,12:00,23,19,Broken clouds.,8,170,79,1015
1112
+ 20211005,12:00,18:00,23,22,Passing clouds.,15,200,72,1014
1113
+ 20211005,18:00,00:00,21,19,Passing clouds.,6,270,79,1015
1114
+ 20211006,00:00,06:00,21,20,Passing clouds.,5,320,83,1016
1115
+ 20211006,06:00,12:00,21,20,Partly sunny.,8,320,73,1016
1116
+ 20211006,12:00,18:00,22,20,Partly sunny.,19,320,72,1015
1117
+ 20211006,18:00,00:00,20,19,Overcast.,12,300,78,1014
1118
+ 20211007,00:00,06:00,19,19,Partly cloudy.,5,320,80,1016
1119
+ 20211007,06:00,12:00,21,19,More clouds than sun.,6,260,78,1017
1120
+ 20211007,12:00,18:00,21,20,More clouds than sun.,12,280,70,1016
1121
+ 20211007,18:00,00:00,20,19,Partly cloudy.,7,350,76,1016
1122
+ 20211008,00:00,06:00,19,18,Light rain. Fog.,9,320,84,1016
1123
+ 20211008,06:00,12:00,20,18,Broken clouds.,11,270,81,1019
1124
+ 20211008,12:00,18:00,21,19,Partly sunny.,18,320,68,1018
1125
+ 20211008,18:00,00:00,18,17,Passing clouds.,8,310,75,1018
1126
+ 20211009,00:00,06:00,17,16,Clear.,0,0,82,1018
1127
+ 20211009,06:00,12:00,21,16,Passing clouds.,5,310,71,1018
1128
+ 20211009,12:00,18:00,21,19,Passing clouds.,21,290,62,1016
1129
+ 20211009,18:00,00:00,19,18,Clear.,10,320,74,1017
1130
+ 20211010,00:00,06:00,17,14,Clear.,4,280,81,1016
1131
+ 20211010,06:00,12:00,22,14,Sunny.,6,70,71,1017
1132
+ 20211010,12:00,18:00,22,21,Sunny.,22,320,64,1014
1133
+ 20211010,18:00,00:00,21,17,Clear.,10,340,82,1013
1134
+ 20211011,00:00,06:00,17,16,Fog.,2,90,88,1011
1135
+ 20211011,06:00,12:00,19,16,Overcast.,12,200,81,1010
1136
+ 20211011,12:00,18:00,20,18,Overcast.,23,230,66,1007
1137
+ 20211011,18:00,00:00,19,18,Overcast.,30,280,60,1007
1138
+ 20211012,00:00,06:00,18,17,Passing clouds.,25,320,52,1010
1139
+ 20211012,06:00,12:00,21,17,Passing clouds.,23,340,31,1013
1140
+ 20211012,12:00,18:00,21,18,Sunny.,19,270,30,1013
1141
+ 20211012,18:00,00:00,18,14,Clear.,11,340,50,1014
1142
+ 20211013,00:00,06:00,14,12,Clear.,3,80,57,1013
1143
+ 20211013,06:00,12:00,22,11,Sunny.,5,90,39,1014
1144
+ 20211013,12:00,18:00,22,19,Sunny.,25,300,48,1013
1145
+ 20211013,18:00,00:00,19,15,Clear.,4,310,68,1013
1146
+ 20211014,00:00,06:00,14,12,Clear.,2,120,72,1014
1147
+ 20211014,06:00,12:00,21,12,Sunny.,4,350,56,1016
1148
+ 20211014,12:00,18:00,21,19,Sunny.,16,290,60,1015
1149
+ 20211014,18:00,00:00,19,17,Clear.,8,320,76,1016
1150
+ 20211015,00:00,06:00,17,12,Clear.,4,20,76,1016
1151
+ 20211015,06:00,12:00,28,13,Sunny.,8,0,40,1017
1152
+ 20211015,12:00,18:00,29,24,Sunny.,23,330,23,1015
1153
+ 20211015,18:00,00:00,23,17,Clear.,4,10,42,1016
1154
+ 20211016,00:00,06:00,17,13,Clear.,2,290,59,1015
1155
+ 20211016,06:00,12:00,29,12,Passing clouds.,3,350,35,1015
1156
+ 20211016,12:00,18:00,28,26,Sunny.,14,310,20,1013
1157
+ 20211016,18:00,00:00,23,16,Passing clouds.,4,280,43,1015
1158
+ 20211017,00:00,06:00,16,14,Clear.,0,0,62,1015
1159
+ 20211017,06:00,12:00,22,14,Scattered clouds.,4,180,49,1015
1160
+ 20211017,12:00,18:00,23,19,Scattered clouds.,16,280,64,1015
1161
+ 20211017,18:00,00:00,18,17,Passing clouds.,5,310,73,1016
1162
+ 20211018,00:00,06:00,17,16,Passing clouds.,3,140,78,1015
1163
+ 20211018,06:00,12:00,19,18,Partly sunny.,18,270,68,1016
1164
+ 20211018,12:00,18:00,20,17,Partly sunny.,19,290,63,1015
1165
+ 20211018,18:00,00:00,18,15,Passing clouds.,9,290,63,1015
1166
+ 20211019,00:00,06:00,13,12,Passing clouds.,2,100,76,1016
1167
+ 20211019,06:00,12:00,18,11,Passing clouds.,6,80,69,1017
1168
+ 20211019,12:00,18:00,19,18,Passing clouds.,15,270,56,1016
1169
+ 20211019,18:00,00:00,17,16,Passing clouds.,2,350,67,1017
1170
+ 20211020,00:00,06:00,15,10,Passing clouds.,1,100,76,1018
1171
+ 20211020,06:00,12:00,19,12,Scattered clouds.,6,190,68,1019
1172
+ 20211020,12:00,18:00,20,18,Scattered clouds.,20,320,66,1018
1173
+ 20211020,18:00,00:00,18,15,Passing clouds.,9,340,76,1019
1174
+ 20211021,00:00,06:00,14,13,Passing clouds.,1,80,88,1019
1175
+ 20211021,06:00,12:00,20,12,Scattered clouds.,5,180,74,1019
1176
+ 20211021,12:00,18:00,21,18,Scattered clouds.,18,310,71,1018
1177
+ 20211021,18:00,00:00,17,16,Passing clouds.,10,320,86,1018
1178
+ 20211022,00:00,06:00,17,16,Passing clouds.,12,340,84,1017
1179
+ 20211022,06:00,12:00,18,16,Broken clouds.,12,10,75,1017
1180
+ 20211022,12:00,18:00,19,17,Partly sunny.,20,310,72,1015
1181
+ 20211022,18:00,00:00,17,16,Overcast.,12,310,79,1014
1182
+ 20211023,00:00,06:00,17,16,Overcast.,6,130,79,1013
1183
+ 20211023,06:00,12:00,18,15,Overcast.,5,100,83,1014
1184
+ 20211023,12:00,18:00,18,17,Partly sunny.,11,190,73,1012
1185
+ 20211023,18:00,00:00,16,16,Passing clouds.,8,190,86,1013
1186
+ 20211024,00:00,06:00,16,16,Overcast.,7,130,82,1012
1187
+ 20211024,06:00,12:00,19,15,Partly sunny.,8,110,73,1013
1188
+ 20211024,12:00,18:00,19,18,Passing clouds.,17,280,70,1012
1189
+ 20211024,18:00,00:00,17,15,Passing clouds.,5,270,83,1014
1190
+ 20211025,00:00,06:00,17,16,Overcast.,5,130,84,1014
1191
+ 20211025,06:00,12:00,18,16,Broken clouds.,15,150,80,1014
1192
+ 20211025,12:00,18:00,18,15,Light rain. Fog.,25,180,90,1013
1193
+ 20211025,18:00,00:00,16,13,Partly cloudy.,13,300,87,1015
1194
+ 20211026,00:00,06:00,15,12,Passing clouds.,6,90,86,1017
1195
+ 20211026,06:00,12:00,17,13,Scattered clouds.,8,140,82,1019
1196
+ 20211026,12:00,18:00,18,17,Passing clouds.,17,280,69,1018
1197
+ 20211026,18:00,00:00,17,15,Clear.,13,10,78,1019
1198
+ 20211027,00:00,06:00,14,12,Clear.,5,350,87,1020
1199
+ 20211027,06:00,12:00,24,12,Sunny.,3,330,63,1021
1200
+ 20211027,12:00,18:00,22,19,Sunny.,18,320,52,1018
1201
+ 20211027,18:00,00:00,19,17,Clear.,8,10,61,1018
1202
+ 20211028,00:00,06:00,15,13,Clear.,2,340,79,1017
1203
+ 20211028,06:00,12:00,26,13,Sunny.,7,0,56,1017
1204
+ 20211028,12:00,18:00,27,22,Sunny.,18,340,38,1014
1205
+ 20211028,18:00,00:00,21,16,Clear.,5,310,56,1014
1206
+ 20211029,00:00,06:00,16,14,Clear.,1,50,80,1013
1207
+ 20211029,06:00,12:00,20,14,Sunny.,6,200,78,1014
1208
+ 20211029,12:00,18:00,21,18,Passing clouds.,10,170,84,1012
1209
+ 20211029,18:00,00:00,17,15,Fog.,5,180,95,1013
1210
+ 20211030,00:00,06:00,15,14,Low clouds.,3,210,95,1013
1211
+ 20211030,06:00,12:00,16,14,Fog.,7,200,88,1015
1212
+ 20211030,12:00,18:00,17,16,Scattered clouds.,9,220,82,1014
1213
+ 20211030,18:00,00:00,16,16,Overcast.,5,210,82,1015
1214
+ 20211031,00:00,06:00,16,15,Overcast.,1,140,81,1015
1215
+ 20211031,06:00,12:00,17,15,Overcast.,5,210,80,1016
1216
+ 20211031,12:00,18:00,18,16,Scattered clouds.,12,270,73,1015
1217
+ 20211031,18:00,00:00,16,16,Passing clouds.,8,350,83,1017
1218
+ 20211101,00:00,06:00,16,15,Overcast.,3,30,83,1017
1219
+ 20211101,06:00,12:00,18,14,Partly sunny.,11,50,81,1019
1220
+ 20211101,12:00,18:00,19,17,Broken clouds.,22,300,77,1018
1221
+ 20211101,18:00,00:00,17,16,Passing clouds.,15,330,86,1020
1222
+ 20211102,00:00,06:00,16,16,Overcast.,16,330,85,1020
1223
+ 20211102,06:00,12:00,17,15,Overcast.,15,330,84,1022
1224
+ 20211102,12:00,18:00,18,16,Scattered clouds.,22,320,76,1020
1225
+ 20211102,18:00,00:00,16,14,Passing clouds.,12,340,86,1020
1226
+ 20211103,00:00,06:00,14,13,Passing clouds.,8,0,93,1019
1227
+ 20211103,06:00,12:00,17,14,Fog.,10,0,89,1018
1228
+ 20211103,12:00,18:00,17,14,Passing clouds.,19,310,82,1016
1229
+ 20211103,18:00,00:00,14,14,Passing clouds.,6,330,92,1017
1230
+ 20211104,00:00,06:00,14,13,Low clouds.,7,290,94,1017
1231
+ 20211104,06:00,12:00,16,13,Fog.,8,310,92,1017
1232
+ 20211104,12:00,18:00,17,15,Haze.,14,310,81,1014
1233
+ 20211104,18:00,00:00,14,13,Fog.,5,280,98,1014
1234
+ 20211105,00:00,06:00,13,13,Fog.,5,340,100,1014
1235
+ 20211105,06:00,12:00,16,13,Fog.,5,0,97,1015
1236
+ 20211105,12:00,18:00,17,14,Fog.,10,220,87,1014
1237
+ 20211105,18:00,00:00,14,13,Fog.,7,170,97,1016
1238
+ 20211106,00:00,06:00,14,14,Low clouds.,6,90,93,1017
1239
+ 20211106,06:00,12:00,16,13,Fog.,5,190,88,1018
1240
+ 20211106,12:00,18:00,17,15,Passing clouds.,15,320,80,1016
1241
+ 20211106,18:00,00:00,14,14,Passing clouds.,4,310,88,1017
1242
+ 20211107,00:00,06:00,14,13,Overcast.,3,30,85,1017
1243
+ 20211107,06:00,12:00,17,14,Scattered clouds.,6,0,81,1017
1244
+ 20211107,12:00,18:00,17,14,Passing clouds.,15,300,79,1015
1245
+ 20211107,18:00,00:00,14,13,Passing clouds.,3,170,90,1017
1246
+ 20211108,00:00,06:00,14,13,Overcast.,5,130,85,1017
1247
+ 20211108,06:00,12:00,16,13,Fog.,7,170,86,1018
1248
+ 20211108,12:00,18:00,16,15,Scattered clouds.,7,190,84,1018
1249
+ 20211108,18:00,00:00,14,12,Passing clouds.,3,90,93,1020
1250
+ 20211109,00:00,06:00,13,12,Passing clouds.,3,90,92,1021
1251
+ 20211109,06:00,12:00,17,12,Passing clouds.,7,10,82,1023
1252
+ 20211109,12:00,18:00,18,16,Scattered clouds.,23,310,76,1022
1253
+ 20211109,18:00,00:00,16,14,Passing clouds.,12,340,88,1022
1254
+ 20211110,00:00,06:00,15,14,Passing clouds.,3,0,92,1021
1255
+ 20211110,06:00,12:00,18,15,Partly sunny.,8,0,78,1020
1256
+ 20211110,12:00,18:00,18,16,Sunny.,23,320,80,1017
1257
+ 20211110,18:00,00:00,16,14,Clear.,9,350,93,1018
1258
+ 20211111,00:00,06:00,13,12,Clear.,3,0,98,1017
1259
+ 20211111,06:00,12:00,26,13,Sunny.,7,290,53,1018
1260
+ 20211111,12:00,18:00,25,23,Sunny.,19,0,38,1015
1261
+ 20211111,18:00,00:00,23,15,Clear.,5,10,59,1016
1262
+ 20211112,00:00,06:00,14,12,Clear.,2,350,74,1016
1263
+ 20211112,06:00,12:00,29,14,Passing clouds.,4,340,43,1018
1264
+ 20211112,12:00,18:00,29,23,Scattered clouds.,14,340,26,1015
1265
+ 20211112,18:00,00:00,22,17,Passing clouds.,4,10,48,1017
1266
+ 20211113,00:00,06:00,15,14,Clear.,1,30,69,1016
1267
+ 20211113,06:00,12:00,22,14,Sunny.,6,160,46,1018
1268
+ 20211113,12:00,18:00,24,17,Sunny.,9,200,52,1016
1269
+ 20211113,18:00,00:00,16,15,Clear.,1,40,78,1018
1270
+ 20211114,00:00,06:00,15,12,Clear.,1,10,73,1018
1271
+ 20211114,06:00,12:00,27,13,Sunny.,10,0,41,1018
1272
+ 20211114,12:00,18:00,26,19,Sunny.,11,330,35,1016
1273
+ 20211114,18:00,00:00,16,12,Clear.,1,100,86,1018
1274
+ 20211115,00:00,06:00,13,12,Clear.,3,0,85,1018
1275
+ 20211115,06:00,12:00,23,11,Sunny.,15,150,46,1019
1276
+ 20211115,12:00,18:00,21,14,Passing clouds.,9,310,76,1018
1277
+ 20211115,18:00,00:00,13,12,Fog.,11,340,100,1018
1278
+ 20211116,00:00,06:00,13,12,Fog.,9,340,100,1017
1279
+ 20211116,06:00,12:00,14,12,Fog.,9,160,96,1017
1280
+ 20211116,12:00,18:00,15,13,Broken clouds.,8,280,85,1015
1281
+ 20211116,18:00,00:00,14,13,Passing clouds.,6,190,88,1016
1282
+ 20211117,00:00,06:00,14,12,Passing clouds.,6,80,89,1016
1283
+ 20211117,06:00,12:00,17,12,Passing clouds.,9,100,82,1017
1284
+ 20211117,12:00,18:00,17,15,Scattered clouds.,11,260,79,1016
1285
+ 20211117,18:00,00:00,14,13,Passing clouds.,6,320,91,1018
1286
+ 20211118,00:00,06:00,13,12,Passing clouds.,6,350,97,1018
1287
+ 20211118,06:00,12:00,16,13,Broken clouds.,12,310,87,1019
1288
+ 20211118,12:00,18:00,16,14,Partly sunny.,17,310,84,1018
1289
+ 20211118,18:00,00:00,14,13,Fog.,9,350,95,1019
1290
+ 20211119,00:00,06:00,14,14,Fog.,7,30,93,1018
1291
+ 20211119,06:00,12:00,16,13,Fog.,7,320,88,1019
1292
+ 20211119,12:00,18:00,16,13,Partly sunny.,15,310,83,1017
1293
+ 20211119,18:00,00:00,14,13,Passing clouds.,5,340,90,1018
1294
+ 20211120,00:00,06:00,13,13,Overcast.,2,200,89,1018
1295
+ 20211120,06:00,12:00,15,13,Partly sunny.,9,300,83,1018
1296
+ 20211120,12:00,18:00,15,14,Broken clouds.,17,340,84,1017
1297
+ 20211120,18:00,00:00,14,13,Fog.,10,0,92,1017
1298
+ 20211121,00:00,06:00,13,11,Fog.,4,10,99,1017
1299
+ 20211121,06:00,12:00,24,10,Fog.,4,350,81,1018
1300
+ 20211121,12:00,18:00,25,18,Passing clouds.,12,340,34,1016
1301
+ 20211121,18:00,00:00,16,14,Passing clouds.,1,0,47,1018
1302
+ 20211122,00:00,06:00,13,11,Clear.,3,60,62,1017
1303
+ 20211122,06:00,12:00,25,12,Broken clouds.,10,350,36,1017
1304
+ 20211122,12:00,18:00,24,16,Partly sunny.,17,320,26,1015
1305
+ 20211122,18:00,00:00,16,14,Passing clouds.,2,300,77,1016
1306
+ 20211123,00:00,06:00,14,12,Passing clouds.,0,0,74,1015
1307
+ 20211123,06:00,12:00,16,12,Broken clouds.,5,150,69,1015
1308
+ 20211123,12:00,18:00,17,14,Broken clouds.,10,190,93,1014
1309
+ 20211123,18:00,00:00,14,12,Passing clouds.,6,130,99,1015
1310
+ 20211124,00:00,06:00,13,11,Partly cloudy.,7,100,95,1015
1311
+ 20211124,06:00,12:00,17,11,Passing clouds.,7,170,75,1018
1312
+ 20211124,12:00,18:00,17,15,Passing clouds.,13,260,77,1017
1313
+ 20211124,18:00,00:00,15,12,Clear.,8,350,93,1020
1314
+ 20211125,00:00,06:00,11,7,Clear.,5,340,75,1021
1315
+ 20211125,06:00,12:00,22,8,Sunny.,8,60,48,1022
1316
+ 20211125,12:00,18:00,22,19,Sunny.,11,60,16,1021
1317
+ 20211125,18:00,00:00,18,13,Clear.,9,10,22,1022
1318
+ 20211126,00:00,06:00,12,9,Clear.,5,20,46,1020
1319
+ 20211126,06:00,12:00,24,9,Passing clouds.,5,110,32,1019
1320
+ 20211126,12:00,18:00,23,18,Scattered clouds.,19,320,39,1016
1321
+ 20211126,18:00,00:00,16,11,Clear.,3,350,59,1017
1322
+ 20211127,00:00,06:00,12,9,Clear.,4,20,64,1017
1323
+ 20211127,06:00,12:00,22,8,Passing clouds.,5,90,33,1019
1324
+ 20211127,12:00,18:00,22,15,Passing clouds.,7,170,64,1018
1325
+ 20211127,18:00,00:00,13,12,Clear.,0,0,92,1020
1326
+ 20211128,00:00,06:00,11,9,Clear.,4,0,72,1020
1327
+ 20211128,06:00,12:00,22,8,Sunny.,7,330,42,1021
1328
+ 20211128,12:00,18:00,23,14,Sunny.,15,320,66,1019
1329
+ 20211128,18:00,00:00,14,11,Fog.,4,0,100,1020
1330
+ 20211129,00:00,06:00,12,9,Fog.,5,10,96,1019
1331
+ 20211129,06:00,12:00,24,8,Sunny.,2,330,53,1019
1332
+ 20211129,12:00,18:00,22,16,Sunny.,10,320,67,1016
1333
+ 20211129,18:00,00:00,16,13,Fog.,6,0,94,1017
1334
+ 20211130,00:00,06:00,13,12,Fog.,2,0,96,1017
1335
+ 20211130,06:00,12:00,17,13,Fog.,6,300,83,1018
1336
+ 20211130,12:00,18:00,18,16,Passing clouds.,11,310,72,1015
1337
+ 20211130,18:00,00:00,15,12,Fog.,2,290,86,1016
1338
+ 20211201,00:00,06:00,15,14,Fog.,1,90,92,1017
1339
+ 20211201,06:00,12:00,19,13,Fog.,5,330,83,1018
1340
+ 20211201,12:00,18:00,18,15,Scattered clouds.,9,290,80,1017
1341
+ 20211201,18:00,00:00,15,14,Fog.,3,350,89,1019
1342
+ 20211202,00:00,06:00,15,14,Fog.,3,330,86,1019
1343
+ 20211202,06:00,12:00,17,14,Partly sunny.,6,0,77,1020
1344
+ 20211202,12:00,18:00,17,15,Scattered clouds.,11,280,73,1019
1345
+ 20211202,18:00,00:00,15,15,Overcast.,8,10,78,1020
1346
+ 20211203,00:00,06:00,14,14,Overcast.,8,350,79,1019
1347
+ 20211203,06:00,12:00,17,14,Overcast.,10,310,69,1020
1348
+ 20211203,12:00,18:00,17,15,Scattered clouds.,20,320,70,1018
1349
+ 20211203,18:00,00:00,16,15,Overcast.,9,310,73,1020
1350
+ 20211204,00:00,06:00,16,15,Overcast.,9,20,72,1019
1351
+ 20211204,06:00,12:00,17,15,Overcast.,14,310,70,1021
1352
+ 20211204,12:00,18:00,17,14,Partly sunny.,19,320,70,1020
1353
+ 20211204,18:00,00:00,16,14,Overcast.,8,0,76,1021
1354
+ 20211205,00:00,06:00,16,15,Overcast.,5,0,74,1020
1355
+ 20211205,06:00,12:00,18,15,Overcast.,7,0,70,1020
1356
+ 20211205,12:00,18:00,18,16,Sunny.,15,290,70,1017
1357
+ 20211205,18:00,00:00,15,12,Fog.,4,10,85,1017
1358
+ 20211206,00:00,06:00,12,10,Fog.,0,0,87,1017
1359
+ 20211206,06:00,12:00,16,10,Fog.,7,110,85,1018
1360
+ 20211206,12:00,18:00,17,16,Partly sunny.,9,180,77,1017
1361
+ 20211206,18:00,00:00,16,15,Overcast.,17,180,80,1016
1362
+ 20211207,00:00,06:00,16,16,Mostly cloudy.,13,130,74,1015
1363
+ 20211207,06:00,12:00,16,16,Mostly cloudy.,14,140,69,1015
1364
+ 20211207,12:00,18:00,17,16,Cloudy.,11,150,75,1015
1365
+ 20211207,18:00,00:00,16,14,Passing clouds.,7,100,81,1015
1366
+ 20211208,00:00,06:00,14,13,Partly cloudy.,8,110,81,1016
1367
+ 20211208,06:00,12:00,19,12,Broken clouds.,7,150,72,1017
1368
+ 20211208,12:00,18:00,19,16,Passing clouds.,11,280,70,1015
1369
+ 20211208,18:00,00:00,17,15,Passing clouds.,3,300,79,1016
1370
+ 20211209,00:00,06:00,16,16,Passing clouds.,6,120,83,1015
1371
+ 20211209,06:00,12:00,18,15,Partly sunny.,8,300,84,1015
1372
+ 20211209,12:00,18:00,17,15,Broken clouds.,19,290,79,1014
1373
+ 20211209,18:00,00:00,15,14,Passing clouds.,22,300,68,1015
1374
+ 20211210,00:00,06:00,14,10,Passing clouds.,7,110,80,1017
1375
+ 20211210,06:00,12:00,16,12,Partly sunny.,7,120,76,1019
1376
+ 20211210,12:00,18:00,16,14,Broken clouds.,6,140,62,1020
1377
+ 20211210,18:00,00:00,13,12,Clear.,9,10,76,1021
1378
+ 20211211,00:00,06:00,10,9,Clear.,0,0,80,1021
1379
+ 20211211,06:00,12:00,19,10,Passing clouds.,6,0,43,1022
1380
+ 20211211,12:00,18:00,20,15,Passing clouds.,12,340,43,1019
1381
+ 20211211,18:00,00:00,15,9,Clear.,2,0,69,1019
1382
+ 20211212,00:00,06:00,9,8,Clear.,3,110,65,1017
1383
+ 20211212,06:00,12:00,17,8,Sunny.,4,0,57,1017
1384
+ 20211212,12:00,18:00,18,14,Passing clouds.,8,280,61,1016
1385
+ 20211212,18:00,00:00,13,11,Clear.,3,300,81,1018
1386
+ 20211213,00:00,06:00,12,11,Mostly cloudy.,7,120,77,1018
1387
+ 20211213,06:00,12:00,15,12,Mostly cloudy.,1,120,66,1020
1388
+ 20211213,12:00,18:00,16,14,Overcast.,8,140,66,1019
1389
+ 20211213,18:00,00:00,16,14,Mostly cloudy.,10,110,74,1019
1390
+ 20211214,00:00,06:00,16,15,Partly cloudy.,31,150,76,1017
1391
+ 20211214,06:00,12:00,16,15,Mostly cloudy.,48,160,82,1015
1392
+ 20211214,12:00,18:00,16,13,Rain. Fog.,37,290,81,1014
1393
+ 20211214,18:00,00:00,13,12,Passing clouds.,27,300,57,1020
1394
+ 20211215,00:00,06:00,12,9,Passing clouds.,16,320,61,1021
1395
+ 20211215,06:00,12:00,14,8,Passing clouds.,6,80,63,1024
1396
+ 20211215,12:00,18:00,14,12,Scattered clouds.,14,300,55,1022
1397
+ 20211215,18:00,00:00,12,9,Passing clouds.,4,330,64,1023
1398
+ 20211216,00:00,06:00,8,6,Passing clouds.,2,80,72,1021
1399
+ 20211216,06:00,12:00,15,7,Scattered clouds.,5,320,63,1021
1400
+ 20211216,12:00,18:00,15,14,Scattered clouds.,11,320,64,1019
1401
+ 20211216,18:00,00:00,14,12,Mostly cloudy.,6,110,82,1019
1402
+ 20211217,00:00,06:00,13,11,Passing clouds.,7,30,86,1018
1403
+ 20211217,06:00,12:00,17,12,Passing clouds.,8,310,72,1019
1404
+ 20211217,12:00,18:00,18,15,Passing clouds.,22,340,64,1018
1405
+ 20211217,18:00,00:00,14,11,Clear.,4,0,80,1020
1406
+ 20211218,00:00,06:00,9,7,Clear.,3,320,72,1020
1407
+ 20211218,06:00,12:00,18,8,Sunny.,3,350,52,1022
1408
+ 20211218,12:00,18:00,18,14,Sunny.,14,350,46,1019
1409
+ 20211218,18:00,00:00,13,9,Clear.,4,330,85,1019
1410
+ 20211219,00:00,06:00,9,6,Clear.,2,0,79,1019
1411
+ 20211219,06:00,12:00,16,6,Sunny.,4,150,64,1020
1412
+ 20211219,12:00,18:00,17,14,Sunny.,7,200,64,1019
1413
+ 20211219,18:00,00:00,14,9,Passing clouds.,4,30,81,1020
1414
+ 20211220,00:00,06:00,8,7,Clear.,3,50,80,1020
1415
+ 20211220,06:00,12:00,17,7,Scattered clouds.,3,330,58,1021
1416
+ 20211220,12:00,18:00,17,14,Partly sunny.,17,340,66,1018
1417
+ 20211220,18:00,00:00,14,12,Passing clouds.,6,20,81,1019
1418
+ 20211221,00:00,06:00,13,12,Passing clouds.,3,280,82,1019
1419
+ 20211221,06:00,12:00,18,12,Partly sunny.,8,340,60,1020
1420
+ 20211221,12:00,18:00,18,16,Broken clouds.,11,320,66,1018
1421
+ 20211221,18:00,00:00,15,12,Fog.,6,0,89,1020
1422
+ 20211222,00:00,06:00,13,12,Fog.,4,350,88,1019
1423
+ 20211222,06:00,12:00,17,11,Broken clouds.,7,290,75,1019
1424
+ 20211222,12:00,18:00,17,16,Broken clouds.,14,330,65,1016
1425
+ 20211222,18:00,00:00,16,15,Passing clouds.,9,340,78,1017
1426
+ 20211223,00:00,06:00,16,15,Mostly cloudy.,2,270,80,1017
1427
+ 20211223,06:00,12:00,17,16,Partly sunny.,5,180,74,1016
1428
+ 20211223,12:00,18:00,17,14,Overcast.,9,160,80,1015
1429
+ 20211223,18:00,00:00,15,13,Light rain. Overcast.,20,100,75,1013
1430
+ 20211224,00:00,06:00,16,15,Light rain. Fog.,30,170,84,1010
1431
+ 20211224,06:00,12:00,17,15,Passing clouds.,23,230,78,1012
1432
+ 20211224,12:00,18:00,17,14,Sunny.,13,250,70,1014
1433
+ 20211224,18:00,00:00,14,12,Passing clouds.,0,0,80,1016
1434
+ 20211225,00:00,06:00,13,13,Mostly cloudy.,0,0,88,1017
1435
+ 20211225,06:00,12:00,15,13,Fog.,0,0,81,1018
1436
+ 20211225,12:00,18:00,15,13,Mostly cloudy.,0,0,70,1016
1437
+ 20211225,18:00,00:00,14,13,Mostly cloudy.,0,0,75,1017
1438
+ 20211226,00:00,06:00,15,13,Mostly cloudy.,0,0,78,1016
1439
+ 20211226,06:00,12:00,16,13,Broken clouds.,7,350,63,1019
1440
+ 20211226,12:00,18:00,16,12,Scattered clouds.,9,300,55,1018
1441
+ 20211226,18:00,00:00,12,9,Passing clouds.,5,0,68,1020
1442
+ 20211227,00:00,06:00,10,9,Passing clouds.,1,70,72,1019
1443
+ 20211227,06:00,12:00,13,9,Partly sunny.,1,170,69,1019
1444
+ 20211227,12:00,18:00,14,13,Partly sunny.,14,280,63,1016
1445
+ 20211227,18:00,00:00,14,13,Overcast.,16,260,76,1014
1446
+ 20211228,00:00,06:00,13,12,Partly cloudy.,15,280,73,1013
1447
+ 20211228,06:00,12:00,13,12,Partly sunny.,12,290,70,1013
1448
+ 20211228,12:00,18:00,13,12,Partly sunny.,14,280,70,1011
1449
+ 20211228,18:00,00:00,12,12,Passing clouds.,11,300,76,1012
1450
+ 20211229,00:00,06:00,11,10,Partly cloudy.,8,100,86,1013
1451
+ 20211229,06:00,12:00,15,10,Broken clouds.,6,160,79,1013
1452
+ 20211229,12:00,18:00,14,13,Light rain. Partly sunny.,15,190,80,1012
1453
+ 20211229,18:00,00:00,14,13,Passing clouds.,15,140,72,1012
1454
+ 20211230,00:00,06:00,14,13,Partly cloudy.,15,130,70,1011
1455
+ 20211230,06:00,12:00,17,13,Broken clouds.,14,140,71,1012
1456
+ 20211230,12:00,18:00,17,16,Partly sunny.,13,180,74,1009
1457
+ 20211230,18:00,00:00,16,14,Passing clouds.,1,0,80,1008
1458
+ 20211231,00:00,06:00,14,13,Overcast.,0,0,77,1006
1459
+ 20211231,06:00,12:00,17,13,Partly sunny.,0,0,76,1007
1460
+ 20211231,12:00,18:00,16,14,Mostly cloudy.,0,0,71,1007
1461
+ 20211231,18:00,00:00,14,13,Overcast.,0,0,63,1011
weather/san-diego/raw_data/daily_weather_2022.csv ADDED
@@ -0,0 +1,1461 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20220101,00:00,06:00,14,12,Passing clouds.,0,0,70,1014
3
+ 20220101,06:00,12:00,16,11,Passing clouds.,7,100,65,1019
4
+ 20220101,12:00,18:00,16,14,Scattered clouds.,11,230,62,1021
5
+ 20220101,18:00,00:00,13,9,Clear.,4,0,61,1024
6
+ 20220102,00:00,06:00,9,7,Clear.,0,0,65,1024
7
+ 20220102,06:00,12:00,17,8,Sunny.,4,80,44,1025
8
+ 20220102,12:00,18:00,18,14,Passing clouds.,12,60,44,1021
9
+ 20220102,18:00,00:00,13,8,Clear.,3,310,70,1022
10
+ 20220103,00:00,06:00,8,6,Clear.,0,0,68,1022
11
+ 20220103,06:00,12:00,15,6,Passing clouds.,2,310,60,1023
12
+ 20220103,12:00,18:00,16,13,Passing clouds.,16,320,61,1022
13
+ 20220103,18:00,00:00,13,9,Passing clouds.,2,330,77,1024
14
+ 20220104,00:00,06:00,8,7,Passing clouds.,0,0,76,1024
15
+ 20220104,06:00,12:00,16,9,Passing clouds.,3,300,61,1024
16
+ 20220104,12:00,18:00,16,13,Passing clouds.,15,320,68,1021
17
+ 20220104,18:00,00:00,13,12,Clear.,8,10,74,1021
18
+ 20220105,00:00,06:00,10,8,Clear.,2,40,84,1020
19
+ 20220105,06:00,12:00,17,8,Passing clouds.,0,0,72,1019
20
+ 20220105,12:00,18:00,18,15,Scattered clouds.,9,300,59,1016
21
+ 20220105,18:00,00:00,14,11,Passing clouds.,1,300,83,1016
22
+ 20220106,00:00,06:00,11,9,Passing clouds.,0,0,86,1015
23
+ 20220106,06:00,12:00,18,9,Passing clouds.,2,280,68,1015
24
+ 20220106,12:00,18:00,18,16,Passing clouds.,8,280,65,1013
25
+ 20220106,18:00,00:00,14,11,Fog.,2,330,84,1013
26
+ 20220107,00:00,06:00,12,11,Fog.,4,100,97,1013
27
+ 20220107,06:00,12:00,14,11,Fog.,5,150,91,1015
28
+ 20220107,12:00,18:00,15,13,Partly sunny.,9,170,77,1013
29
+ 20220107,18:00,00:00,13,13,Mostly cloudy.,13,190,77,1014
30
+ 20220108,00:00,06:00,13,12,Mostly cloudy.,11,180,79,1015
31
+ 20220108,06:00,12:00,15,11,Broken clouds.,9,80,76,1018
32
+ 20220108,12:00,18:00,16,14,Partly sunny.,8,270,68,1017
33
+ 20220108,18:00,00:00,13,11,Passing clouds.,0,0,83,1020
34
+ 20220109,00:00,06:00,11,8,Clear.,0,0,87,1021
35
+ 20220109,06:00,12:00,17,9,Passing clouds.,7,340,75,1023
36
+ 20220109,12:00,18:00,22,16,Passing clouds.,7,270,50,1023
37
+ 20220109,18:00,00:00,13,11,Clear.,4,350,77,1026
38
+ 20220110,00:00,06:00,11,9,Clear.,5,300,72,1025
39
+ 20220110,06:00,12:00,21,11,Partly sunny.,10,10,50,1025
40
+ 20220110,12:00,18:00,22,16,Partly sunny.,12,330,43,1022
41
+ 20220110,18:00,00:00,14,12,Passing clouds.,2,20,65,1024
42
+ 20220111,00:00,06:00,12,11,Passing clouds.,3,30,62,1023
43
+ 20220111,06:00,12:00,23,11,Scattered clouds.,9,0,38,1023
44
+ 20220111,12:00,18:00,26,19,Scattered clouds.,12,340,27,1020
45
+ 20220111,18:00,00:00,17,12,Passing clouds.,4,330,55,1023
46
+ 20220112,00:00,06:00,13,10,Passing clouds.,5,10,54,1022
47
+ 20220112,06:00,12:00,22,10,Partly sunny.,3,330,47,1023
48
+ 20220112,12:00,18:00,24,17,Broken clouds.,11,310,25,1021
49
+ 20220112,18:00,00:00,15,12,Passing clouds.,2,260,69,1022
50
+ 20220113,00:00,06:00,13,12,Passing clouds.,1,170,74,1022
51
+ 20220113,06:00,12:00,21,12,Partly sunny.,3,350,49,1023
52
+ 20220113,12:00,18:00,22,18,Broken clouds.,11,320,33,1020
53
+ 20220113,18:00,00:00,18,17,Passing clouds.,6,300,52,1020
54
+ 20220114,00:00,06:00,16,14,Partly cloudy.,5,10,71,1019
55
+ 20220114,06:00,12:00,22,14,Partly sunny.,8,10,57,1019
56
+ 20220114,12:00,18:00,21,17,Broken clouds.,12,320,49,1018
57
+ 20220114,18:00,00:00,17,16,Partly cloudy.,10,350,66,1019
58
+ 20220115,00:00,06:00,15,13,Passing clouds.,1,10,87,1019
59
+ 20220115,06:00,12:00,18,14,Light rain. Mostly cloudy.,12,40,73,1021
60
+ 20220115,12:00,18:00,20,19,Broken clouds.,8,90,48,1019
61
+ 20220115,18:00,00:00,19,18,Passing clouds.,5,280,48,1019
62
+ 20220116,00:00,06:00,17,14,Haze.,1,170,63,1018
63
+ 20220116,06:00,12:00,17,13,Partly sunny.,3,170,74,1018
64
+ 20220116,12:00,18:00,17,16,Broken clouds.,8,180,88,1017
65
+ 20220116,18:00,00:00,16,16,Fog.,2,150,89,1018
66
+ 20220117,00:00,06:00,16,14,Fog.,4,130,90,1017
67
+ 20220117,06:00,12:00,17,15,Fog.,7,120,82,1019
68
+ 20220117,12:00,18:00,18,17,More clouds than sun.,5,0,70,1017
69
+ 20220117,18:00,00:00,17,14,Light rain. Mostly cloudy.,8,210,79,1018
70
+ 20220118,00:00,06:00,14,14,Overcast.,5,310,87,1017
71
+ 20220118,06:00,12:00,17,14,Broken clouds.,4,290,83,1019
72
+ 20220118,12:00,18:00,18,16,Scattered clouds.,16,300,74,1018
73
+ 20220118,18:00,00:00,16,16,Partly cloudy.,10,330,80,1019
74
+ 20220119,00:00,06:00,16,16,Passing clouds.,5,310,80,1020
75
+ 20220119,06:00,12:00,17,16,Partly sunny.,7,0,76,1021
76
+ 20220119,12:00,18:00,18,16,Passing clouds.,20,310,72,1020
77
+ 20220119,18:00,00:00,15,13,Clear.,7,0,83,1021
78
+ 20220120,00:00,06:00,13,11,Fog.,5,340,89,1022
79
+ 20220120,06:00,12:00,19,10,Sunny.,5,0,76,1024
80
+ 20220120,12:00,18:00,21,17,Sunny.,16,320,62,1021
81
+ 20220120,18:00,00:00,15,12,Clear.,3,240,69,1021
82
+ 20220121,00:00,06:00,11,9,Clear.,1,350,80,1019
83
+ 20220121,06:00,12:00,17,9,Sunny.,6,170,69,1018
84
+ 20220121,12:00,18:00,17,14,Partly sunny.,11,280,74,1014
85
+ 20220121,18:00,00:00,14,13,Passing clouds.,6,340,84,1014
86
+ 20220122,00:00,06:00,12,9,Clear.,3,110,87,1014
87
+ 20220122,06:00,12:00,19,11,Passing clouds.,5,0,50,1016
88
+ 20220122,12:00,18:00,20,17,Passing clouds.,14,260,38,1016
89
+ 20220122,18:00,00:00,14,12,Passing clouds.,3,310,61,1018
90
+ 20220123,00:00,06:00,12,9,Clear.,2,320,68,1019
91
+ 20220123,06:00,12:00,19,11,Sunny.,8,20,52,1021
92
+ 20220123,12:00,18:00,21,17,Sunny.,16,300,42,1020
93
+ 20220123,18:00,00:00,14,12,Clear.,1,320,68,1020
94
+ 20220124,00:00,06:00,12,10,Clear.,4,110,64,1019
95
+ 20220124,06:00,12:00,18,10,Sunny.,6,200,57,1019
96
+ 20220124,12:00,18:00,17,15,Sunny.,10,190,75,1016
97
+ 20220124,18:00,00:00,16,13,Passing clouds.,6,180,85,1016
98
+ 20220125,00:00,06:00,12,11,Passing clouds.,3,110,75,1015
99
+ 20220125,06:00,12:00,17,9,Broken clouds.,11,120,69,1015
100
+ 20220125,12:00,18:00,17,14,Scattered clouds.,12,220,69,1015
101
+ 20220125,18:00,00:00,14,12,Passing clouds.,5,170,78,1017
102
+ 20220126,00:00,06:00,14,11,Fog.,6,60,81,1018
103
+ 20220126,06:00,12:00,19,10,Passing clouds.,10,330,71,1019
104
+ 20220126,12:00,18:00,19,15,Scattered clouds.,12,300,59,1018
105
+ 20220126,18:00,00:00,14,12,Passing clouds.,2,0,76,1020
106
+ 20220127,00:00,06:00,11,9,Passing clouds.,3,0,78,1020
107
+ 20220127,06:00,12:00,21,8,Passing clouds.,4,340,45,1022
108
+ 20220127,12:00,18:00,21,16,Scattered clouds.,21,330,44,1020
109
+ 20220127,18:00,00:00,15,11,Passing clouds.,3,350,78,1022
110
+ 20220128,00:00,06:00,11,8,Passing clouds.,3,330,80,1022
111
+ 20220128,06:00,12:00,23,9,Partly sunny.,6,10,42,1024
112
+ 20220128,12:00,18:00,23,17,Partly sunny.,10,290,25,1021
113
+ 20220128,18:00,00:00,14,9,Passing clouds.,2,0,57,1021
114
+ 20220129,00:00,06:00,12,9,Clear.,6,0,48,1020
115
+ 20220129,06:00,12:00,19,11,Broken clouds.,6,330,34,1020
116
+ 20220129,12:00,18:00,21,16,Broken clouds.,11,340,32,1018
117
+ 20220129,18:00,00:00,16,11,Passing clouds.,3,350,72,1019
118
+ 20220130,00:00,06:00,10,8,Clear.,0,0,66,1019
119
+ 20220130,06:00,12:00,18,8,Sunny.,5,140,45,1021
120
+ 20220130,12:00,18:00,18,16,Scattered clouds.,15,240,70,1020
121
+ 20220130,18:00,00:00,15,11,Clear.,3,30,82,1021
122
+ 20220131,00:00,06:00,11,8,Clear.,2,10,80,1020
123
+ 20220131,06:00,12:00,16,8,Partly sunny.,3,130,65,1020
124
+ 20220131,12:00,18:00,16,15,Broken clouds.,10,200,68,1017
125
+ 20220131,18:00,00:00,14,13,Partly cloudy.,5,180,82,1017
126
+ 20220201,00:00,06:00,14,13,Passing clouds.,11,150,76,1015
127
+ 20220201,06:00,12:00,17,13,Partly sunny.,15,170,71,1013
128
+ 20220201,12:00,18:00,17,14,Broken clouds.,12,170,68,1010
129
+ 20220201,18:00,00:00,14,12,Passing clouds.,7,80,79,1011
130
+ 20220202,00:00,06:00,12,9,Passing clouds.,4,10,84,1012
131
+ 20220202,06:00,12:00,17,10,Passing clouds.,5,210,66,1015
132
+ 20220202,12:00,18:00,18,15,Sunny.,14,290,43,1014
133
+ 20220202,18:00,00:00,14,10,Clear.,9,80,44,1018
134
+ 20220203,00:00,06:00,10,7,Clear.,2,350,49,1020
135
+ 20220203,06:00,12:00,16,6,Sunny.,4,130,33,1023
136
+ 20220203,12:00,18:00,18,15,Passing clouds.,13,300,30,1022
137
+ 20220203,18:00,00:00,15,11,Passing clouds.,2,0,58,1025
138
+ 20220204,00:00,06:00,8,7,Clear.,2,90,68,1026
139
+ 20220204,06:00,12:00,19,6,Passing clouds.,8,350,42,1027
140
+ 20220204,12:00,18:00,19,16,Passing clouds.,18,300,36,1025
141
+ 20220204,18:00,00:00,14,10,Passing clouds.,3,10,70,1025
142
+ 20220205,00:00,06:00,10,7,Clear.,5,350,64,1023
143
+ 20220205,06:00,12:00,20,8,Passing clouds.,6,60,43,1022
144
+ 20220205,12:00,18:00,20,17,Passing clouds.,21,320,26,1020
145
+ 20220205,18:00,00:00,16,10,Passing clouds.,3,350,40,1020
146
+ 20220206,00:00,06:00,9,8,Clear.,2,60,57,1020
147
+ 20220206,06:00,12:00,21,7,Sunny.,2,210,41,1021
148
+ 20220206,12:00,18:00,22,18,Sunny.,15,330,30,1019
149
+ 20220206,18:00,00:00,16,11,Clear.,4,190,56,1022
150
+ 20220207,00:00,06:00,12,9,Clear.,10,350,60,1023
151
+ 20220207,06:00,12:00,24,9,Sunny.,7,310,32,1024
152
+ 20220207,12:00,18:00,24,19,Sunny.,16,320,25,1022
153
+ 20220207,18:00,00:00,19,13,Clear.,4,30,37,1023
154
+ 20220208,00:00,06:00,13,11,Clear.,3,340,42,1021
155
+ 20220208,06:00,12:00,24,9,Scattered clouds.,4,0,30,1022
156
+ 20220208,12:00,18:00,25,19,Scattered clouds.,18,320,18,1018
157
+ 20220208,18:00,00:00,18,13,Passing clouds.,6,330,40,1018
158
+ 20220209,00:00,06:00,13,10,Passing clouds.,3,330,58,1018
159
+ 20220209,06:00,12:00,27,10,Passing clouds.,0,0,36,1018
160
+ 20220209,12:00,18:00,28,22,Sunny.,21,310,22,1015
161
+ 20220209,18:00,00:00,19,13,Passing clouds.,3,120,62,1016
162
+ 20220210,00:00,06:00,13,11,Passing clouds.,4,270,60,1016
163
+ 20220210,06:00,12:00,28,14,Sunny.,8,310,29,1017
164
+ 20220210,12:00,18:00,28,22,Sunny.,14,270,25,1016
165
+ 20220210,18:00,00:00,21,16,Clear.,5,50,53,1017
166
+ 20220211,00:00,06:00,15,12,Clear.,4,50,56,1016
167
+ 20220211,06:00,12:00,27,12,Sunny.,2,180,32,1016
168
+ 20220211,12:00,18:00,27,21,Sunny.,11,330,23,1014
169
+ 20220211,18:00,00:00,19,15,Clear.,1,110,49,1016
170
+ 20220212,00:00,06:00,14,12,Clear.,0,0,62,1016
171
+ 20220212,06:00,12:00,31,10,Passing clouds.,3,340,36,1019
172
+ 20220212,12:00,18:00,32,18,Passing clouds.,16,320,23,1017
173
+ 20220212,18:00,00:00,17,16,Clear.,3,340,71,1020
174
+ 20220213,00:00,06:00,15,12,Clear.,6,350,49,1020
175
+ 20220213,06:00,12:00,27,13,Sunny.,5,0,23,1021
176
+ 20220213,12:00,18:00,28,22,Sunny.,19,320,14,1019
177
+ 20220213,18:00,00:00,21,14,Clear.,3,320,37,1020
178
+ 20220214,00:00,06:00,13,11,Clear.,1,320,53,1019
179
+ 20220214,06:00,12:00,23,12,Passing clouds.,4,30,34,1018
180
+ 20220214,12:00,18:00,21,15,Scattered clouds.,11,300,68,1015
181
+ 20220214,18:00,00:00,15,14,Passing clouds.,3,110,78,1015
182
+ 20220215,00:00,06:00,15,14,Passing clouds.,13,200,70,1014
183
+ 20220215,06:00,12:00,16,13,Partly sunny.,20,240,78,1014
184
+ 20220215,12:00,18:00,16,14,Partly sunny.,25,250,58,1011
185
+ 20220215,18:00,00:00,13,12,Passing clouds.,25,250,60,1011
186
+ 20220216,00:00,06:00,13,9,Passing clouds.,12,90,69,1012
187
+ 20220216,06:00,12:00,16,8,Passing clouds.,8,100,66,1016
188
+ 20220216,12:00,18:00,17,14,Scattered clouds.,13,180,62,1017
189
+ 20220216,18:00,00:00,14,12,Passing clouds.,6,130,73,1019
190
+ 20220217,00:00,06:00,12,9,Passing clouds.,2,100,80,1021
191
+ 20220217,06:00,12:00,18,9,Sunny.,7,110,62,1024
192
+ 20220217,12:00,18:00,21,17,Sunny.,21,310,42,1022
193
+ 20220217,18:00,00:00,16,11,Clear.,8,10,61,1024
194
+ 20220218,00:00,06:00,11,9,Clear.,3,40,60,1023
195
+ 20220218,06:00,12:00,21,9,Passing clouds.,3,170,34,1024
196
+ 20220218,12:00,18:00,20,16,Sunny.,21,320,45,1020
197
+ 20220218,18:00,00:00,15,12,Clear.,6,340,77,1021
198
+ 20220219,00:00,06:00,11,9,Clear.,0,0,75,1019
199
+ 20220219,06:00,12:00,21,8,Sunny.,5,10,51,1019
200
+ 20220219,12:00,18:00,19,17,Scattered clouds.,16,290,59,1016
201
+ 20220219,18:00,00:00,15,13,Passing clouds.,3,280,84,1017
202
+ 20220220,00:00,06:00,13,11,Fog.,5,70,88,1016
203
+ 20220220,06:00,12:00,17,11,Fog.,5,110,85,1016
204
+ 20220220,12:00,18:00,17,15,Partly sunny.,12,240,66,1015
205
+ 20220220,18:00,00:00,14,14,Overcast.,7,230,62,1015
206
+ 20220221,00:00,06:00,14,14,Overcast.,11,230,62,1014
207
+ 20220221,06:00,12:00,17,14,Overcast.,17,250,61,1016
208
+ 20220221,12:00,18:00,16,14,Partly sunny.,21,260,60,1016
209
+ 20220221,18:00,00:00,14,13,Overcast.,14,220,62,1017
210
+ 20220222,00:00,06:00,13,13,Passing clouds.,16,260,62,1017
211
+ 20220222,06:00,12:00,16,13,Broken clouds.,20,240,58,1018
212
+ 20220222,12:00,18:00,15,12,Partly sunny.,21,230,72,1016
213
+ 20220222,18:00,00:00,13,11,Light rain. Partly cloudy.,26,270,74,1015
214
+ 20220223,00:00,06:00,12,10,Light rain. Passing clouds.,26,280,70,1014
215
+ 20220223,06:00,12:00,13,11,Scattered clouds.,30,290,55,1016
216
+ 20220223,12:00,18:00,14,12,Scattered clouds.,27,280,48,1017
217
+ 20220223,18:00,00:00,12,10,Passing clouds.,12,310,52,1020
218
+ 20220224,00:00,06:00,9,6,Clear.,8,80,66,1022
219
+ 20220224,06:00,12:00,15,6,Sunny.,7,90,51,1025
220
+ 20220224,12:00,18:00,16,14,Sunny.,27,300,32,1022
221
+ 20220224,18:00,00:00,13,10,Passing clouds.,10,40,43,1022
222
+ 20220225,00:00,06:00,9,7,Passing clouds.,1,70,55,1022
223
+ 20220225,06:00,12:00,16,7,Partly sunny.,7,70,42,1023
224
+ 20220225,12:00,18:00,16,14,Passing clouds.,21,320,51,1021
225
+ 20220225,18:00,00:00,14,10,Clear.,4,0,64,1023
226
+ 20220226,00:00,06:00,10,6,Clear.,3,120,68,1023
227
+ 20220226,06:00,12:00,19,7,Sunny.,6,310,43,1025
228
+ 20220226,12:00,18:00,19,17,Scattered clouds.,21,310,34,1023
229
+ 20220226,18:00,00:00,16,11,Passing clouds.,11,10,67,1025
230
+ 20220227,00:00,06:00,11,9,Clear.,5,110,51,1024
231
+ 20220227,06:00,12:00,20,9,Partly sunny.,5,350,35,1025
232
+ 20220227,12:00,18:00,20,17,Partly sunny.,24,340,36,1021
233
+ 20220227,18:00,00:00,16,12,Passing clouds.,3,0,57,1022
234
+ 20220228,00:00,06:00,12,9,Clear.,1,0,62,1020
235
+ 20220228,06:00,12:00,24,10,Passing clouds.,6,10,32,1020
236
+ 20220228,12:00,18:00,24,18,Passing clouds.,17,330,25,1017
237
+ 20220228,18:00,00:00,17,12,Clear.,6,320,53,1018
238
+ 20220301,00:00,06:00,12,9,Clear.,2,20,61,1017
239
+ 20220301,06:00,12:00,22,11,Passing clouds.,7,330,36,1018
240
+ 20220301,12:00,18:00,24,20,Passing clouds.,14,340,20,1016
241
+ 20220301,18:00,00:00,19,14,Clear.,3,0,66,1018
242
+ 20220302,00:00,06:00,13,11,Clear.,4,330,76,1016
243
+ 20220302,06:00,12:00,19,10,Scattered clouds.,6,190,55,1017
244
+ 20220302,12:00,18:00,22,16,Partly sunny.,10,280,57,1014
245
+ 20220302,18:00,00:00,16,14,Fog.,5,180,88,1015
246
+ 20220303,00:00,06:00,14,12,Fog.,4,150,92,1014
247
+ 20220303,06:00,12:00,16,12,Fog.,15,190,83,1014
248
+ 20220303,12:00,18:00,16,15,Partly sunny.,23,170,71,1013
249
+ 20220303,18:00,00:00,15,15,Partly cloudy.,29,170,78,1014
250
+ 20220304,00:00,06:00,15,13,Passing clouds.,19,160,83,1012
251
+ 20220304,06:00,12:00,16,14,Broken clouds.,12,190,75,1014
252
+ 20220304,12:00,18:00,17,16,Scattered clouds.,20,250,67,1016
253
+ 20220304,18:00,00:00,15,14,Partly cloudy.,17,260,72,1019
254
+ 20220305,00:00,06:00,14,13,Mostly cloudy.,7,260,63,1019
255
+ 20220305,06:00,12:00,16,13,Broken clouds.,19,280,54,1021
256
+ 20220305,12:00,18:00,15,13,Broken clouds.,31,270,54,1020
257
+ 20220305,18:00,00:00,13,12,Passing clouds.,26,270,60,1020
258
+ 20220306,00:00,06:00,12,10,Passing clouds.,0,0,70,1021
259
+ 20220306,06:00,12:00,15,10,Scattered clouds.,7,200,67,1023
260
+ 20220306,12:00,18:00,16,14,Passing clouds.,15,220,54,1022
261
+ 20220306,18:00,00:00,13,11,Clear.,2,300,66,1023
262
+ 20220307,00:00,06:00,11,9,Clear.,3,50,74,1023
263
+ 20220307,06:00,12:00,18,9,Sunny.,10,310,62,1023
264
+ 20220307,12:00,18:00,18,16,Passing clouds.,22,320,58,1020
265
+ 20220307,18:00,00:00,16,12,Clear.,4,340,75,1021
266
+ 20220308,00:00,06:00,12,9,Clear.,2,290,78,1021
267
+ 20220308,06:00,12:00,18,8,Sunny.,5,180,51,1021
268
+ 20220308,12:00,18:00,19,17,Sunny.,18,280,42,1017
269
+ 20220308,18:00,00:00,16,13,Clear.,4,340,66,1017
270
+ 20220309,00:00,06:00,11,9,Clear.,3,100,57,1016
271
+ 20220309,06:00,12:00,17,9,Sunny.,8,160,57,1016
272
+ 20220309,12:00,18:00,17,16,Sunny.,14,210,67,1014
273
+ 20220309,18:00,00:00,15,14,Passing clouds.,13,180,68,1014
274
+ 20220310,00:00,06:00,15,14,Passing clouds.,17,190,69,1013
275
+ 20220310,06:00,12:00,17,15,More clouds than sun.,16,180,66,1015
276
+ 20220310,12:00,18:00,18,16,Scattered clouds.,19,320,64,1015
277
+ 20220310,18:00,00:00,16,14,Passing clouds.,9,20,76,1019
278
+ 20220311,00:00,06:00,12,10,Clear.,6,80,79,1022
279
+ 20220311,06:00,12:00,19,11,Passing clouds.,8,120,42,1025
280
+ 20220311,12:00,18:00,20,17,Passing clouds.,15,320,36,1024
281
+ 20220311,18:00,00:00,17,13,Clear.,6,340,53,1024
282
+ 20220312,00:00,06:00,12,9,Clear.,4,350,52,1023
283
+ 20220312,06:00,12:00,22,11,Passing clouds.,4,10,42,1022
284
+ 20220312,12:00,18:00,21,17,Passing clouds.,18,300,42,1019
285
+ 20220312,18:00,00:00,16,12,Clear.,4,320,72,1019
286
+ 20220313,00:00,06:00,12,10,Clear.,3,120,77,1019
287
+ 20220313,06:00,12:00,16,11,Partly sunny.,6,110,64,1020
288
+ 20220313,12:00,18:00,17,16,Passing clouds.,12,210,64,1020
289
+ 20220313,18:00,00:00,16,14,Passing clouds.,6,240,77,1020
290
+ 20220314,00:00,06:00,13,12,Passing clouds.,5,90,82,1021
291
+ 20220314,06:00,12:00,18,13,Passing clouds.,8,100,68,1022
292
+ 20220314,12:00,18:00,19,18,Passing clouds.,21,310,60,1020
293
+ 20220314,18:00,00:00,17,14,Passing clouds.,8,320,79,1021
294
+ 20220315,00:00,06:00,15,13,Fog.,5,330,86,1021
295
+ 20220315,06:00,12:00,18,12,Fog.,8,350,82,1021
296
+ 20220315,12:00,18:00,19,18,Scattered clouds.,13,300,66,1019
297
+ 20220315,18:00,00:00,17,14,Fog.,2,280,81,1018
298
+ 20220316,00:00,06:00,16,15,Passing clouds.,6,150,82,1017
299
+ 20220316,06:00,12:00,18,16,Partly sunny.,8,150,74,1017
300
+ 20220316,12:00,18:00,19,18,Scattered clouds.,13,260,68,1016
301
+ 20220316,18:00,00:00,17,15,Passing clouds.,3,270,80,1017
302
+ 20220317,00:00,06:00,15,14,Passing clouds.,5,210,85,1016
303
+ 20220317,06:00,12:00,21,13,Scattered clouds.,7,330,76,1017
304
+ 20220317,12:00,18:00,23,20,Passing clouds.,24,340,46,1016
305
+ 20220317,18:00,00:00,19,17,Passing clouds.,11,320,59,1017
306
+ 20220318,00:00,06:00,16,13,Passing clouds.,1,10,84,1016
307
+ 20220318,06:00,12:00,19,13,Fog.,3,210,74,1017
308
+ 20220318,12:00,18:00,23,21,Sunny.,14,280,49,1016
309
+ 20220318,18:00,00:00,18,15,Passing clouds.,9,290,81,1017
310
+ 20220319,00:00,06:00,14,13,Passing clouds.,3,100,88,1016
311
+ 20220319,06:00,12:00,17,13,Scattered clouds.,9,100,76,1018
312
+ 20220319,12:00,18:00,19,16,Broken clouds.,16,300,67,1016
313
+ 20220319,18:00,00:00,16,15,Passing clouds.,8,270,73,1015
314
+ 20220320,00:00,06:00,14,13,Partly cloudy.,18,290,83,1013
315
+ 20220320,06:00,12:00,17,14,Broken clouds.,12,320,77,1015
316
+ 20220320,12:00,18:00,18,17,Passing clouds.,18,300,66,1016
317
+ 20220320,18:00,00:00,16,13,Haze.,5,280,78,1017
318
+ 20220321,00:00,06:00,13,12,Passing clouds.,6,120,84,1018
319
+ 20220321,06:00,12:00,17,11,Partly sunny.,11,100,77,1019
320
+ 20220321,12:00,18:00,18,17,Partly sunny.,12,260,67,1017
321
+ 20220321,18:00,00:00,17,15,Passing clouds.,5,310,73,1017
322
+ 20220322,00:00,06:00,15,13,Clear.,3,350,80,1016
323
+ 20220322,06:00,12:00,24,13,Passing clouds.,4,340,62,1018
324
+ 20220322,12:00,18:00,26,22,Passing clouds.,16,310,41,1016
325
+ 20220322,18:00,00:00,22,19,Clear.,9,30,44,1017
326
+ 20220323,00:00,06:00,17,14,Clear.,6,70,62,1018
327
+ 20220323,06:00,12:00,29,16,Sunny.,5,30,42,1019
328
+ 20220323,12:00,18:00,29,24,Sunny.,20,340,23,1017
329
+ 20220323,18:00,00:00,23,18,Clear.,16,340,42,1018
330
+ 20220324,00:00,06:00,17,15,Clear.,3,320,59,1017
331
+ 20220324,06:00,12:00,22,14,Scattered clouds.,7,310,55,1017
332
+ 20220324,12:00,18:00,22,21,Passing clouds.,17,330,58,1016
333
+ 20220324,18:00,00:00,22,16,Passing clouds.,7,340,70,1016
334
+ 20220325,00:00,06:00,16,14,Fog.,6,310,90,1016
335
+ 20220325,06:00,12:00,19,14,Partly sunny.,11,310,79,1016
336
+ 20220325,12:00,18:00,19,17,Scattered clouds.,18,310,70,1014
337
+ 20220325,18:00,00:00,17,16,Passing clouds.,9,290,81,1015
338
+ 20220326,00:00,06:00,16,14,Low clouds.,10,330,84,1014
339
+ 20220326,06:00,12:00,17,14,Low clouds.,10,280,80,1014
340
+ 20220326,12:00,18:00,18,16,Scattered clouds.,13,270,70,1012
341
+ 20220326,18:00,00:00,14,14,Passing clouds.,7,170,79,1012
342
+ 20220327,00:00,06:00,14,14,Overcast.,8,190,78,1012
343
+ 20220327,06:00,12:00,16,14,Broken clouds.,13,200,72,1013
344
+ 20220327,12:00,18:00,17,16,Scattered clouds.,15,210,67,1013
345
+ 20220327,18:00,00:00,15,15,Passing clouds.,14,180,69,1013
346
+ 20220328,00:00,06:00,16,15,Overcast.,13,170,71,1013
347
+ 20220328,06:00,12:00,18,16,Partly sunny.,32,170,71,1012
348
+ 20220328,12:00,18:00,17,16,Light rain. Fog.,27,170,79,1010
349
+ 20220328,18:00,00:00,16,14,Light rain. Overcast.,17,200,81,1009
350
+ 20220329,00:00,06:00,14,13,Light rain. Passing clouds.,5,100,83,1010
351
+ 20220329,06:00,12:00,16,13,Broken clouds.,7,200,80,1014
352
+ 20220329,12:00,18:00,17,16,Broken clouds.,20,290,70,1016
353
+ 20220329,18:00,00:00,16,14,Passing clouds.,10,280,76,1018
354
+ 20220330,00:00,06:00,14,14,Partly cloudy.,6,240,77,1018
355
+ 20220330,06:00,12:00,17,14,Scattered clouds.,7,0,70,1018
356
+ 20220330,12:00,18:00,18,17,Scattered clouds.,20,300,66,1016
357
+ 20220330,18:00,00:00,16,15,Passing clouds.,9,260,73,1015
358
+ 20220331,00:00,06:00,15,14,Passing clouds.,13,250,77,1014
359
+ 20220331,06:00,12:00,16,13,Broken clouds.,15,210,78,1013
360
+ 20220331,12:00,18:00,17,14,Broken clouds.,20,180,76,1011
361
+ 20220331,18:00,00:00,14,14,Mostly cloudy.,18,170,84,1011
362
+ 20220401,00:00,06:00,14,14,Passing clouds.,10,160,82,1011
363
+ 20220401,06:00,12:00,17,14,Partly sunny.,12,180,77,1013
364
+ 20220401,12:00,18:00,19,17,Scattered clouds.,15,260,63,1012
365
+ 20220401,18:00,00:00,17,15,Passing clouds.,6,260,80,1014
366
+ 20220402,00:00,06:00,16,15,Overcast.,6,260,82,1015
367
+ 20220402,06:00,12:00,16,14,Fog.,3,240,88,1016
368
+ 20220402,12:00,18:00,16,16,Mostly cloudy.,12,300,79,1016
369
+ 20220402,18:00,00:00,16,15,Overcast.,9,300,80,1016
370
+ 20220403,00:00,06:00,16,15,Mostly cloudy.,10,320,85,1015
371
+ 20220403,06:00,12:00,16,14,Overcast.,12,340,84,1015
372
+ 20220403,12:00,18:00,17,16,Mostly cloudy.,19,310,74,1013
373
+ 20220403,18:00,00:00,15,15,Overcast.,15,310,81,1013
374
+ 20220404,00:00,06:00,15,15,Overcast.,15,320,81,1012
375
+ 20220404,06:00,12:00,17,14,Partly sunny.,15,350,74,1014
376
+ 20220404,12:00,18:00,18,17,Scattered clouds.,20,290,71,1013
377
+ 20220404,18:00,00:00,16,13,Passing clouds.,7,320,84,1013
378
+ 20220405,00:00,06:00,13,12,Fog.,1,130,93,1013
379
+ 20220405,06:00,12:00,16,13,Fog.,7,210,90,1014
380
+ 20220405,12:00,18:00,17,16,Sunny.,15,200,80,1012
381
+ 20220405,18:00,00:00,16,15,Passing clouds.,9,180,90,1012
382
+ 20220406,00:00,06:00,14,13,Fog.,8,180,96,1013
383
+ 20220406,06:00,12:00,21,13,Fog.,4,210,86,1014
384
+ 20220406,12:00,18:00,19,16,Scattered clouds.,14,200,83,1015
385
+ 20220406,18:00,00:00,16,13,Fog.,4,190,97,1016
386
+ 20220407,00:00,06:00,14,12,Passing clouds.,7,0,100,1017
387
+ 20220407,06:00,12:00,28,13,Passing clouds.,5,350,62,1017
388
+ 20220407,12:00,18:00,31,29,Sunny.,18,320,17,1014
389
+ 20220407,18:00,00:00,27,18,Clear.,9,340,43,1014
390
+ 20220408,00:00,06:00,17,14,Clear.,2,70,64,1013
391
+ 20220408,06:00,12:00,33,14,Passing clouds.,5,330,30,1013
392
+ 20220408,12:00,18:00,34,29,Passing clouds.,21,310,12,1011
393
+ 20220408,18:00,00:00,27,18,Clear.,7,320,29,1010
394
+ 20220409,00:00,06:00,18,15,Clear.,4,210,76,1010
395
+ 20220409,06:00,12:00,18,16,Fog.,11,190,91,1011
396
+ 20220409,12:00,18:00,19,17,Partly sunny.,18,210,77,1010
397
+ 20220409,18:00,00:00,17,16,Overcast.,18,190,80,1010
398
+ 20220410,00:00,06:00,15,15,Mostly cloudy.,16,190,81,1010
399
+ 20220410,06:00,12:00,17,16,Partly sunny.,16,190,76,1012
400
+ 20220410,12:00,18:00,18,16,Partly sunny.,19,210,69,1011
401
+ 20220410,18:00,00:00,16,16,Passing clouds.,12,230,71,1011
402
+ 20220411,00:00,06:00,16,14,Overcast.,19,190,72,1011
403
+ 20220411,06:00,12:00,17,14,Partly sunny.,14,210,70,1013
404
+ 20220411,12:00,18:00,17,17,Partly sunny.,15,210,65,1012
405
+ 20220411,18:00,00:00,16,15,Passing clouds.,24,270,70,1013
406
+ 20220412,00:00,06:00,14,13,Passing clouds.,19,260,63,1013
407
+ 20220412,06:00,12:00,18,14,Passing clouds.,18,290,53,1015
408
+ 20220412,12:00,18:00,19,17,Passing clouds.,32,300,39,1016
409
+ 20220412,18:00,00:00,16,15,Clear.,18,310,60,1018
410
+ 20220413,00:00,06:00,15,11,Passing clouds.,5,110,72,1018
411
+ 20220413,06:00,12:00,18,12,Scattered clouds.,11,180,56,1020
412
+ 20220413,12:00,18:00,19,17,Passing clouds.,19,300,38,1019
413
+ 20220413,18:00,00:00,16,14,Clear.,7,320,59,1019
414
+ 20220414,00:00,06:00,14,10,Clear.,4,100,71,1017
415
+ 20220414,06:00,12:00,17,10,Passing clouds.,8,170,63,1016
416
+ 20220414,12:00,18:00,18,17,Sunny.,15,260,63,1015
417
+ 20220414,18:00,00:00,17,15,Passing clouds.,9,290,68,1015
418
+ 20220415,00:00,06:00,14,13,Passing clouds.,7,180,74,1014
419
+ 20220415,06:00,12:00,18,13,Partly sunny.,8,90,66,1015
420
+ 20220415,12:00,18:00,19,18,Scattered clouds.,17,280,58,1014
421
+ 20220415,18:00,00:00,18,16,Passing clouds.,9,310,74,1015
422
+ 20220416,00:00,06:00,16,16,Passing clouds.,10,290,72,1017
423
+ 20220416,06:00,12:00,18,16,Partly sunny.,17,270,68,1019
424
+ 20220416,12:00,18:00,19,18,Passing clouds.,23,290,61,1020
425
+ 20220416,18:00,00:00,17,16,Passing clouds.,22,310,72,1020
426
+ 20220417,00:00,06:00,17,16,Overcast.,17,310,75,1020
427
+ 20220417,06:00,12:00,19,16,Passing clouds.,19,340,70,1021
428
+ 20220417,12:00,18:00,20,18,Passing clouds.,26,320,63,1017
429
+ 20220417,18:00,00:00,17,16,Passing clouds.,19,340,76,1017
430
+ 20220418,00:00,06:00,16,16,Overcast.,9,330,78,1017
431
+ 20220418,06:00,12:00,20,15,Scattered clouds.,11,320,71,1017
432
+ 20220418,12:00,18:00,21,19,Partly sunny.,20,310,62,1016
433
+ 20220418,18:00,00:00,18,16,Passing clouds.,12,330,78,1015
434
+ 20220419,00:00,06:00,16,16,Passing clouds.,11,310,84,1014
435
+ 20220419,06:00,12:00,20,16,Partly sunny.,9,290,70,1015
436
+ 20220419,12:00,18:00,19,17,Scattered clouds.,18,280,68,1015
437
+ 20220419,18:00,00:00,17,16,Passing clouds.,7,310,75,1015
438
+ 20220420,00:00,06:00,15,13,Passing clouds.,5,230,83,1015
439
+ 20220420,06:00,12:00,18,14,Passing clouds.,10,170,76,1017
440
+ 20220420,12:00,18:00,19,18,Passing clouds.,22,270,58,1016
441
+ 20220420,18:00,00:00,17,16,Passing clouds.,16,330,65,1017
442
+ 20220421,00:00,06:00,15,14,Passing clouds.,8,10,73,1016
443
+ 20220421,06:00,12:00,19,14,Passing clouds.,11,350,63,1017
444
+ 20220421,12:00,18:00,19,18,Scattered clouds.,23,290,60,1016
445
+ 20220421,18:00,00:00,17,16,Passing clouds.,13,310,74,1016
446
+ 20220422,00:00,06:00,16,16,Partly cloudy.,17,270,81,1015
447
+ 20220422,06:00,12:00,18,16,Scattered clouds.,25,290,64,1017
448
+ 20220422,12:00,18:00,19,17,Broken clouds.,29,300,53,1018
449
+ 20220422,18:00,00:00,16,13,Passing clouds.,12,310,68,1019
450
+ 20220423,00:00,06:00,12,11,Clear.,3,220,82,1018
451
+ 20220423,06:00,12:00,18,11,Passing clouds.,10,300,65,1018
452
+ 20220423,12:00,18:00,19,18,Passing clouds.,28,320,60,1015
453
+ 20220423,18:00,00:00,18,16,Clear.,14,340,60,1015
454
+ 20220424,00:00,06:00,16,13,Clear.,2,350,73,1014
455
+ 20220424,06:00,12:00,27,13,Sunny.,9,350,47,1015
456
+ 20220424,12:00,18:00,26,23,Sunny.,24,300,34,1014
457
+ 20220424,18:00,00:00,22,17,Clear.,11,0,39,1015
458
+ 20220425,00:00,06:00,18,13,Clear.,2,320,50,1014
459
+ 20220425,06:00,12:00,29,15,Passing clouds.,3,300,28,1015
460
+ 20220425,12:00,18:00,27,23,Passing clouds.,22,340,30,1013
461
+ 20220425,18:00,00:00,23,15,Passing clouds.,10,310,54,1013
462
+ 20220426,00:00,06:00,17,13,Passing clouds.,2,0,76,1013
463
+ 20220426,06:00,12:00,17,14,Partly sunny.,10,210,76,1013
464
+ 20220426,12:00,18:00,21,18,Scattered clouds.,14,210,70,1012
465
+ 20220426,18:00,00:00,17,16,Passing clouds.,9,200,76,1013
466
+ 20220427,00:00,06:00,16,15,Passing clouds.,14,150,76,1013
467
+ 20220427,06:00,12:00,17,16,Partly sunny.,16,150,71,1015
468
+ 20220427,12:00,18:00,18,16,Passing clouds.,16,200,66,1015
469
+ 20220427,18:00,00:00,15,14,Overcast.,11,180,73,1015
470
+ 20220428,00:00,06:00,15,14,Overcast.,12,160,73,1015
471
+ 20220428,06:00,12:00,17,15,Partly sunny.,12,250,67,1016
472
+ 20220428,12:00,18:00,18,17,Passing clouds.,15,240,61,1015
473
+ 20220428,18:00,00:00,16,16,Passing clouds.,8,230,65,1015
474
+ 20220429,00:00,06:00,14,13,Passing clouds.,11,160,69,1015
475
+ 20220429,06:00,12:00,18,14,Passing clouds.,12,210,64,1016
476
+ 20220429,12:00,18:00,19,18,Sunny.,17,280,58,1014
477
+ 20220429,18:00,00:00,17,16,Clear.,8,330,72,1014
478
+ 20220430,00:00,06:00,15,14,Clear.,1,340,85,1014
479
+ 20220430,06:00,12:00,20,14,Passing clouds.,6,260,76,1013
480
+ 20220430,12:00,18:00,19,18,Passing clouds.,14,280,68,1012
481
+ 20220430,18:00,00:00,18,16,Clear.,6,180,80,1011
482
+ 20220501,00:00,06:00,16,16,Overcast.,9,220,82,1010
483
+ 20220501,06:00,12:00,18,16,Overcast.,22,160,72,1011
484
+ 20220501,12:00,18:00,18,16,Overcast.,18,170,73,1011
485
+ 20220501,18:00,00:00,16,15,Overcast.,16,200,75,1013
486
+ 20220502,00:00,06:00,15,15,Overcast.,14,180,72,1014
487
+ 20220502,06:00,12:00,17,15,Overcast.,14,180,66,1015
488
+ 20220502,12:00,18:00,18,18,Scattered clouds.,14,230,63,1013
489
+ 20220502,18:00,00:00,18,16,Passing clouds.,9,290,70,1013
490
+ 20220503,00:00,06:00,17,15,Passing clouds.,11,230,75,1013
491
+ 20220503,06:00,12:00,17,16,Partly sunny.,16,210,72,1014
492
+ 20220503,12:00,18:00,17,16,Passing clouds.,15,210,64,1013
493
+ 20220503,18:00,00:00,15,14,Passing clouds.,6,200,72,1013
494
+ 20220504,00:00,06:00,14,14,Passing clouds.,1,180,77,1013
495
+ 20220504,06:00,12:00,19,14,Partly sunny.,7,280,72,1014
496
+ 20220504,12:00,18:00,19,18,Passing clouds.,18,300,67,1013
497
+ 20220504,18:00,00:00,17,17,Passing clouds.,6,260,79,1014
498
+ 20220505,00:00,06:00,17,16,Low clouds.,4,220,83,1015
499
+ 20220505,06:00,12:00,20,16,Passing clouds.,11,330,76,1016
500
+ 20220505,12:00,18:00,21,18,Scattered clouds.,23,300,70,1015
501
+ 20220505,18:00,00:00,17,15,Passing clouds.,14,320,85,1016
502
+ 20220506,00:00,06:00,15,15,Low clouds.,7,320,90,1015
503
+ 20220506,06:00,12:00,17,14,Fog.,9,170,84,1015
504
+ 20220506,12:00,18:00,18,17,Passing clouds.,12,260,74,1015
505
+ 20220506,18:00,00:00,17,16,Passing clouds.,7,200,85,1014
506
+ 20220507,00:00,06:00,16,16,Overcast.,8,180,81,1013
507
+ 20220507,06:00,12:00,18,16,Overcast.,11,150,79,1014
508
+ 20220507,12:00,18:00,17,16,Partly sunny.,13,210,78,1013
509
+ 20220507,18:00,00:00,16,16,Overcast.,11,220,84,1012
510
+ 20220508,00:00,06:00,15,14,Overcast.,18,210,77,1011
511
+ 20220508,06:00,12:00,17,14,Partly sunny.,19,190,73,1013
512
+ 20220508,12:00,18:00,18,16,Partly sunny.,19,210,68,1013
513
+ 20220508,18:00,00:00,15,14,Passing clouds.,12,260,68,1013
514
+ 20220509,00:00,06:00,14,14,Overcast.,11,220,68,1013
515
+ 20220509,06:00,12:00,17,14,Partly sunny.,14,180,64,1015
516
+ 20220509,12:00,18:00,18,17,Passing clouds.,23,300,61,1015
517
+ 20220509,18:00,00:00,16,15,Passing clouds.,15,320,61,1015
518
+ 20220510,00:00,06:00,14,12,Passing clouds.,5,10,68,1016
519
+ 20220510,06:00,12:00,18,13,Partly sunny.,9,260,61,1018
520
+ 20220510,12:00,18:00,19,18,Scattered clouds.,27,300,55,1018
521
+ 20220510,18:00,00:00,16,13,Passing clouds.,25,300,64,1018
522
+ 20220511,00:00,06:00,13,12,Passing clouds.,5,260,70,1018
523
+ 20220511,06:00,12:00,17,12,Passing clouds.,9,150,62,1020
524
+ 20220511,12:00,18:00,18,17,Passing clouds.,25,270,51,1020
525
+ 20220511,18:00,00:00,17,16,Passing clouds.,23,0,58,1020
526
+ 20220512,00:00,06:00,15,11,Clear.,4,40,60,1020
527
+ 20220512,06:00,12:00,21,13,Sunny.,10,300,46,1020
528
+ 20220512,12:00,18:00,23,22,Sunny.,31,320,38,1018
529
+ 20220512,18:00,00:00,21,16,Clear.,17,340,50,1017
530
+ 20220513,00:00,06:00,16,13,Clear.,2,290,69,1016
531
+ 20220513,06:00,12:00,23,16,Passing clouds.,9,350,52,1016
532
+ 20220513,12:00,18:00,26,23,Passing clouds.,19,320,34,1014
533
+ 20220513,18:00,00:00,21,16,Clear.,8,310,56,1014
534
+ 20220514,00:00,06:00,18,16,Clear.,2,20,64,1013
535
+ 20220514,06:00,12:00,26,17,Passing clouds.,6,180,39,1014
536
+ 20220514,12:00,18:00,28,24,Scattered clouds.,14,290,28,1012
537
+ 20220514,18:00,00:00,25,17,Passing clouds.,7,310,57,1012
538
+ 20220515,00:00,06:00,17,15,Fog.,3,130,91,1012
539
+ 20220515,06:00,12:00,19,16,Fog.,8,210,88,1013
540
+ 20220515,12:00,18:00,20,17,Partly sunny.,13,190,74,1013
541
+ 20220515,18:00,00:00,16,16,Passing clouds.,10,170,79,1014
542
+ 20220516,00:00,06:00,16,15,Overcast.,11,140,79,1014
543
+ 20220516,06:00,12:00,18,16,Overcast.,12,190,76,1015
544
+ 20220516,12:00,18:00,18,18,Scattered clouds.,15,210,69,1013
545
+ 20220516,18:00,00:00,17,16,Passing clouds.,10,260,76,1014
546
+ 20220517,00:00,06:00,16,15,Overcast.,8,190,76,1014
547
+ 20220517,06:00,12:00,18,15,Overcast.,16,210,70,1016
548
+ 20220517,12:00,18:00,18,17,Partly sunny.,14,200,67,1015
549
+ 20220517,18:00,00:00,17,16,Passing clouds.,7,240,72,1015
550
+ 20220518,00:00,06:00,16,16,Passing clouds.,11,190,74,1016
551
+ 20220518,06:00,12:00,18,16,Overcast.,14,210,72,1016
552
+ 20220518,12:00,18:00,18,17,Scattered clouds.,15,210,70,1015
553
+ 20220518,18:00,00:00,17,16,Overcast.,11,190,76,1015
554
+ 20220519,00:00,06:00,16,16,Overcast.,8,200,80,1014
555
+ 20220519,06:00,12:00,18,15,Overcast.,11,200,78,1013
556
+ 20220519,12:00,18:00,18,17,Overcast.,16,200,72,1012
557
+ 20220519,18:00,00:00,17,16,Overcast.,17,180,78,1010
558
+ 20220520,00:00,06:00,16,16,Drizzle. Overcast.,20,160,86,1009
559
+ 20220520,06:00,12:00,18,16,Overcast.,21,150,77,1009
560
+ 20220520,12:00,18:00,19,17,Mostly cloudy.,23,180,75,1010
561
+ 20220520,18:00,00:00,16,16,Mostly cloudy.,6,190,87,1011
562
+ 20220521,00:00,06:00,16,16,Overcast.,12,160,81,1011
563
+ 20220521,06:00,12:00,18,16,More clouds than sun.,15,190,76,1014
564
+ 20220521,12:00,18:00,19,17,Partly sunny.,15,210,69,1015
565
+ 20220521,18:00,00:00,17,17,Overcast.,5,300,71,1016
566
+ 20220522,00:00,06:00,17,16,Passing clouds.,6,330,75,1016
567
+ 20220522,06:00,12:00,21,17,Partly sunny.,16,300,68,1016
568
+ 20220522,12:00,18:00,21,17,Overcast.,21,290,71,1016
569
+ 20220522,18:00,00:00,16,16,Mostly cloudy.,6,260,78,1016
570
+ 20220523,00:00,06:00,16,16,Overcast.,8,280,80,1014
571
+ 20220523,06:00,12:00,18,16,Overcast.,11,220,76,1014
572
+ 20220523,12:00,18:00,19,17,Partly sunny.,14,250,69,1012
573
+ 20220523,18:00,00:00,17,16,Overcast.,10,200,76,1012
574
+ 20220524,00:00,06:00,16,16,Overcast.,4,260,78,1010
575
+ 20220524,06:00,12:00,18,16,Overcast.,11,210,76,1011
576
+ 20220524,12:00,18:00,19,17,Partly sunny.,14,240,71,1010
577
+ 20220524,18:00,00:00,17,16,Passing clouds.,7,320,78,1011
578
+ 20220525,00:00,06:00,16,16,Passing clouds.,7,340,82,1011
579
+ 20220525,06:00,12:00,17,16,Fog.,10,210,80,1013
580
+ 20220525,12:00,18:00,19,18,Passing clouds.,13,200,71,1012
581
+ 20220525,18:00,00:00,18,17,Passing clouds.,7,270,78,1013
582
+ 20220526,00:00,06:00,17,17,Passing clouds.,5,270,80,1013
583
+ 20220526,06:00,12:00,19,17,Overcast.,10,260,73,1014
584
+ 20220526,12:00,18:00,19,18,Partly sunny.,13,250,68,1015
585
+ 20220526,18:00,00:00,18,17,Passing clouds.,12,290,70,1016
586
+ 20220527,00:00,06:00,17,17,Overcast.,8,270,74,1016
587
+ 20220527,06:00,12:00,21,17,Overcast.,9,290,65,1017
588
+ 20220527,12:00,18:00,21,19,Scattered clouds.,17,280,59,1016
589
+ 20220527,18:00,00:00,18,18,Partly cloudy.,15,300,69,1015
590
+ 20220528,00:00,06:00,18,17,Overcast.,12,290,72,1014
591
+ 20220528,06:00,12:00,19,18,Overcast.,14,270,64,1015
592
+ 20220528,12:00,18:00,20,18,Partly sunny.,18,260,64,1013
593
+ 20220528,18:00,00:00,18,17,Overcast.,9,250,71,1012
594
+ 20220529,00:00,06:00,17,17,Mostly cloudy.,6,170,75,1010
595
+ 20220529,06:00,12:00,19,17,Partly sunny.,13,210,68,1011
596
+ 20220529,12:00,18:00,20,19,Partly sunny.,17,250,67,1010
597
+ 20220529,18:00,00:00,18,17,Passing clouds.,7,150,73,1010
598
+ 20220530,00:00,06:00,17,16,Overcast.,10,190,75,1010
599
+ 20220530,06:00,12:00,20,17,Overcast.,11,210,68,1011
600
+ 20220530,12:00,18:00,20,19,Sunny.,15,280,63,1010
601
+ 20220530,18:00,00:00,19,17,Passing clouds.,5,250,77,1010
602
+ 20220531,00:00,06:00,17,17,Passing clouds.,11,150,75,1009
603
+ 20220531,06:00,12:00,19,17,Passing clouds.,16,190,68,1011
604
+ 20220531,12:00,18:00,20,19,Sunny.,13,200,66,1010
605
+ 20220531,18:00,00:00,19,17,Passing clouds.,6,260,78,1011
606
+ 20220601,00:00,06:00,18,17,Passing clouds.,2,230,79,1011
607
+ 20220601,06:00,12:00,19,18,Passing clouds.,10,210,73,1012
608
+ 20220601,12:00,18:00,19,17,Scattered clouds.,16,210,72,1011
609
+ 20220601,18:00,00:00,17,17,Passing clouds.,5,210,78,1011
610
+ 20220602,00:00,06:00,17,17,Passing clouds.,7,190,82,1010
611
+ 20220602,06:00,12:00,18,17,Overcast.,7,190,79,1011
612
+ 20220602,12:00,18:00,19,17,Partly sunny.,14,200,74,1011
613
+ 20220602,18:00,00:00,16,16,Overcast.,6,190,80,1011
614
+ 20220603,00:00,06:00,17,16,Overcast.,9,170,80,1010
615
+ 20220603,06:00,12:00,18,17,Overcast.,9,170,74,1012
616
+ 20220603,12:00,18:00,20,18,Scattered clouds.,15,210,67,1011
617
+ 20220603,18:00,00:00,18,17,Partly cloudy.,8,280,74,1012
618
+ 20220604,00:00,06:00,18,18,Overcast.,4,240,75,1012
619
+ 20220604,06:00,12:00,21,18,Overcast.,12,260,72,1014
620
+ 20220604,12:00,18:00,21,19,Partly sunny.,16,270,69,1014
621
+ 20220604,18:00,00:00,18,18,Overcast.,8,260,75,1014
622
+ 20220605,00:00,06:00,18,18,Overcast.,8,270,74,1013
623
+ 20220605,06:00,12:00,21,18,Overcast.,10,190,70,1013
624
+ 20220605,12:00,18:00,22,21,Passing clouds.,17,280,65,1012
625
+ 20220605,18:00,00:00,20,19,Passing clouds.,10,220,77,1012
626
+ 20220606,00:00,06:00,19,18,Overcast.,9,130,86,1012
627
+ 20220606,06:00,12:00,20,18,Partly sunny.,12,170,83,1012
628
+ 20220606,12:00,18:00,21,18,Partly sunny.,14,210,79,1011
629
+ 20220606,18:00,00:00,18,17,Low clouds.,3,170,92,1010
630
+ 20220607,00:00,06:00,17,17,Drizzle. Fog.,7,150,96,1010
631
+ 20220607,06:00,12:00,19,17,Low clouds.,12,210,88,1011
632
+ 20220607,12:00,18:00,19,18,Partly sunny.,15,200,78,1011
633
+ 20220607,18:00,00:00,18,17,Passing clouds.,7,220,82,1011
634
+ 20220608,00:00,06:00,17,17,Low clouds.,6,170,86,1010
635
+ 20220608,06:00,12:00,19,17,Overcast.,6,220,84,1011
636
+ 20220608,12:00,18:00,21,18,Partly sunny.,13,260,78,1009
637
+ 20220608,18:00,00:00,18,17,Low clouds.,9,170,88,1009
638
+ 20220609,00:00,06:00,17,16,Fog.,8,180,92,1009
639
+ 20220609,06:00,12:00,19,16,Drizzle. Fog.,10,210,90,1011
640
+ 20220609,12:00,18:00,20,18,Scattered clouds.,14,180,80,1010
641
+ 20220609,18:00,00:00,18,17,Low clouds.,4,200,86,1011
642
+ 20220610,00:00,06:00,17,17,Low clouds.,2,330,91,1010
643
+ 20220610,06:00,12:00,19,17,Fog.,8,190,91,1013
644
+ 20220610,12:00,18:00,21,19,Scattered clouds.,11,260,76,1013
645
+ 20220610,18:00,00:00,19,17,Low clouds.,8,260,87,1013
646
+ 20220611,00:00,06:00,18,17,Low clouds.,7,310,92,1013
647
+ 20220611,06:00,12:00,21,18,Passing clouds.,12,260,81,1013
648
+ 20220611,12:00,18:00,21,20,Passing clouds.,14,270,74,1013
649
+ 20220611,18:00,00:00,19,17,Passing clouds.,10,320,87,1012
650
+ 20220612,00:00,06:00,18,17,Overcast.,4,270,90,1011
651
+ 20220612,06:00,12:00,19,18,Overcast.,11,210,83,1012
652
+ 20220612,12:00,18:00,19,17,Partly sunny.,14,210,81,1011
653
+ 20220612,18:00,00:00,17,17,Overcast.,6,0,84,1011
654
+ 20220613,00:00,06:00,17,17,Low clouds.,3,160,87,1011
655
+ 20220613,06:00,12:00,19,17,Broken clouds.,15,190,86,1012
656
+ 20220613,12:00,18:00,19,17,Low clouds.,15,210,83,1012
657
+ 20220613,18:00,00:00,18,17,Passing clouds.,7,170,86,1011
658
+ 20220614,00:00,06:00,18,17,Passing clouds.,10,150,80,1011
659
+ 20220614,06:00,12:00,19,17,Overcast.,14,150,74,1012
660
+ 20220614,12:00,18:00,19,18,Scattered clouds.,15,210,74,1011
661
+ 20220614,18:00,00:00,18,16,Passing clouds.,7,190,84,1010
662
+ 20220615,00:00,06:00,17,16,Low clouds.,10,170,88,1010
663
+ 20220615,06:00,12:00,19,16,Overcast.,8,190,81,1010
664
+ 20220615,12:00,18:00,19,19,Scattered clouds.,14,210,74,1010
665
+ 20220615,18:00,00:00,18,17,Passing clouds.,6,260,85,1010
666
+ 20220616,00:00,06:00,17,17,Passing clouds.,3,0,88,1010
667
+ 20220616,06:00,12:00,20,17,Overcast.,10,220,80,1010
668
+ 20220616,12:00,18:00,21,18,Scattered clouds.,14,270,72,1009
669
+ 20220616,18:00,00:00,18,17,Overcast.,8,270,82,1010
670
+ 20220617,00:00,06:00,18,17,Passing clouds.,4,250,78,1010
671
+ 20220617,06:00,12:00,20,18,Scattered clouds.,13,190,70,1011
672
+ 20220617,12:00,18:00,20,19,Passing clouds.,14,210,67,1011
673
+ 20220617,18:00,00:00,19,17,Passing clouds.,12,310,71,1011
674
+ 20220618,00:00,06:00,18,16,Passing clouds.,6,260,74,1011
675
+ 20220618,06:00,12:00,19,16,Partly sunny.,11,230,71,1013
676
+ 20220618,12:00,18:00,20,19,Passing clouds.,17,240,65,1013
677
+ 20220618,18:00,00:00,18,17,Passing clouds.,8,280,73,1014
678
+ 20220619,00:00,06:00,17,15,Clear.,2,300,79,1014
679
+ 20220619,06:00,12:00,21,16,Passing clouds.,8,100,68,1015
680
+ 20220619,12:00,18:00,23,22,Sunny.,22,290,58,1014
681
+ 20220619,18:00,00:00,21,19,Clear.,12,340,71,1013
682
+ 20220620,00:00,06:00,18,16,Clear.,1,330,80,1012
683
+ 20220620,06:00,12:00,24,18,Sunny.,12,290,67,1012
684
+ 20220620,12:00,18:00,25,23,Sunny.,16,290,51,1011
685
+ 20220620,18:00,00:00,22,19,Clear.,6,260,81,1011
686
+ 20220621,00:00,06:00,19,18,Passing clouds.,3,150,92,1011
687
+ 20220621,06:00,12:00,20,18,Partly sunny.,13,210,81,1013
688
+ 20220621,12:00,18:00,22,20,Scattered clouds.,14,200,68,1013
689
+ 20220621,18:00,00:00,20,19,Passing clouds.,11,280,80,1013
690
+ 20220622,00:00,06:00,19,19,Passing clouds.,8,340,88,1013
691
+ 20220622,06:00,12:00,23,19,Broken clouds.,15,310,77,1013
692
+ 20220622,12:00,18:00,23,22,Scattered clouds.,22,310,70,1012
693
+ 20220622,18:00,00:00,22,20,Passing clouds.,15,320,82,1012
694
+ 20220623,00:00,06:00,20,19,Passing clouds.,12,340,88,1011
695
+ 20220623,06:00,12:00,23,20,Passing clouds.,20,310,78,1011
696
+ 20220623,12:00,18:00,24,23,Passing clouds.,22,310,67,1010
697
+ 20220623,18:00,00:00,22,20,Clear.,13,310,84,1011
698
+ 20220624,00:00,06:00,20,18,Clear.,11,330,90,1011
699
+ 20220624,06:00,12:00,23,19,Passing clouds.,19,310,78,1011
700
+ 20220624,12:00,18:00,23,22,Passing clouds.,18,310,71,1011
701
+ 20220624,18:00,00:00,21,19,Passing clouds.,12,310,86,1012
702
+ 20220625,00:00,06:00,19,17,Passing clouds.,15,340,93,1012
703
+ 20220625,06:00,12:00,22,18,Passing clouds.,18,330,78,1013
704
+ 20220625,12:00,18:00,22,22,Passing clouds.,21,310,70,1012
705
+ 20220625,18:00,00:00,21,17,Passing clouds.,15,310,89,1013
706
+ 20220626,00:00,06:00,18,17,Low clouds.,8,320,93,1014
707
+ 20220626,06:00,12:00,21,17,Passing clouds.,10,300,79,1015
708
+ 20220626,12:00,18:00,22,21,Passing clouds.,17,290,70,1014
709
+ 20220626,18:00,00:00,19,17,Passing clouds.,6,200,89,1016
710
+ 20220627,00:00,06:00,18,18,Clear.,8,330,93,1016
711
+ 20220627,06:00,12:00,23,20,Scattered clouds.,13,290,74,1016
712
+ 20220627,12:00,18:00,23,22,Scattered clouds.,13,300,71,1015
713
+ 20220627,18:00,00:00,22,17,Passing clouds.,7,310,86,1015
714
+ 20220628,00:00,06:00,19,17,Passing clouds.,4,160,97,1015
715
+ 20220628,06:00,12:00,23,18,Fog.,7,0,91,1016
716
+ 20220628,12:00,18:00,24,21,Scattered clouds.,14,240,76,1015
717
+ 20220628,18:00,00:00,20,18,Passing clouds.,8,180,96,1016
718
+ 20220629,00:00,06:00,20,17,Low clouds.,5,190,87,1015
719
+ 20220629,06:00,12:00,21,17,Passing clouds.,11,210,88,1017
720
+ 20220629,12:00,18:00,22,21,Sunny.,14,210,76,1016
721
+ 20220629,18:00,00:00,20,18,Passing clouds.,7,210,89,1016
722
+ 20220630,00:00,06:00,18,18,Passing clouds.,6,180,94,1016
723
+ 20220630,06:00,12:00,22,18,Partly sunny.,9,210,82,1016
724
+ 20220630,12:00,18:00,23,22,Scattered clouds.,14,270,71,1015
725
+ 20220630,18:00,00:00,21,19,Passing clouds.,12,310,86,1015
726
+ 20220701,00:00,06:00,19,18,Passing clouds.,4,210,90,1015
727
+ 20220701,06:00,12:00,21,18,Passing clouds.,11,270,80,1016
728
+ 20220701,12:00,18:00,22,21,Passing clouds.,16,280,73,1014
729
+ 20220701,18:00,00:00,21,19,Passing clouds.,13,320,87,1014
730
+ 20220702,00:00,06:00,18,18,Clear.,6,310,88,1014
731
+ 20220702,06:00,12:00,22,18,Passing clouds.,12,280,76,1014
732
+ 20220702,12:00,18:00,22,20,Passing clouds.,17,270,70,1013
733
+ 20220702,18:00,00:00,19,17,Passing clouds.,11,280,82,1013
734
+ 20220703,00:00,06:00,18,17,Overcast.,3,230,79,1013
735
+ 20220703,06:00,12:00,20,18,Passing clouds.,12,180,70,1014
736
+ 20220703,12:00,18:00,20,19,Scattered clouds.,14,230,69,1014
737
+ 20220703,18:00,00:00,19,18,Overcast.,11,280,75,1013
738
+ 20220704,00:00,06:00,18,17,Overcast.,8,260,76,1013
739
+ 20220704,06:00,12:00,19,17,Overcast.,14,210,73,1014
740
+ 20220704,12:00,18:00,20,19,Sunny.,13,240,68,1014
741
+ 20220704,18:00,00:00,18,18,Clear.,5,260,77,1014
742
+ 20220705,00:00,06:00,18,17,Passing clouds.,5,160,83,1014
743
+ 20220705,06:00,12:00,20,18,Partly sunny.,11,210,74,1014
744
+ 20220705,12:00,18:00,21,20,Scattered clouds.,16,280,70,1014
745
+ 20220705,18:00,00:00,20,19,Passing clouds.,12,290,81,1014
746
+ 20220706,00:00,06:00,20,19,Passing clouds.,8,280,86,1014
747
+ 20220706,06:00,12:00,20,19,Partly sunny.,16,290,86,1015
748
+ 20220706,12:00,18:00,21,19,Partly sunny.,19,320,76,1014
749
+ 20220706,18:00,00:00,18,18,Passing clouds.,13,320,89,1013
750
+ 20220707,00:00,06:00,19,18,Passing clouds.,10,340,85,1013
751
+ 20220707,06:00,12:00,21,19,Partly sunny.,11,310,82,1015
752
+ 20220707,12:00,18:00,20,20,Partly sunny.,13,270,78,1015
753
+ 20220707,18:00,00:00,19,18,Passing clouds.,10,290,86,1015
754
+ 20220708,00:00,06:00,18,18,Passing clouds.,6,260,88,1016
755
+ 20220708,06:00,12:00,21,18,Overcast.,10,270,84,1017
756
+ 20220708,12:00,18:00,21,20,Passing clouds.,17,280,73,1017
757
+ 20220708,18:00,00:00,19,17,Passing clouds.,7,260,89,1017
758
+ 20220709,00:00,06:00,18,17,Overcast.,5,190,91,1018
759
+ 20220709,06:00,12:00,22,18,Passing clouds.,14,310,79,1019
760
+ 20220709,12:00,18:00,22,21,Passing clouds.,22,310,73,1018
761
+ 20220709,18:00,00:00,20,18,Passing clouds.,14,320,90,1017
762
+ 20220710,00:00,06:00,17,17,Low clouds.,10,340,95,1017
763
+ 20220710,06:00,12:00,21,18,Passing clouds.,10,310,83,1017
764
+ 20220710,12:00,18:00,21,20,Passing clouds.,15,270,77,1016
765
+ 20220710,18:00,00:00,20,18,Passing clouds.,11,320,91,1014
766
+ 20220711,00:00,06:00,18,17,Low clouds.,10,290,90,1014
767
+ 20220711,06:00,12:00,19,17,Overcast.,13,300,87,1014
768
+ 20220711,12:00,18:00,21,19,Scattered clouds.,17,270,77,1013
769
+ 20220711,18:00,00:00,18,17,Passing clouds.,10,270,87,1013
770
+ 20220712,00:00,06:00,17,17,Overcast.,9,300,88,1013
771
+ 20220712,06:00,12:00,19,17,Overcast.,12,280,79,1014
772
+ 20220712,12:00,18:00,21,19,Scattered clouds.,17,270,69,1013
773
+ 20220712,18:00,00:00,19,17,Passing clouds.,11,280,83,1013
774
+ 20220713,00:00,06:00,17,17,Passing clouds.,12,320,84,1013
775
+ 20220713,06:00,12:00,21,17,Overcast.,14,310,77,1014
776
+ 20220713,12:00,18:00,21,19,Scattered clouds.,20,290,71,1013
777
+ 20220713,18:00,00:00,19,18,Passing clouds.,12,290,84,1013
778
+ 20220714,00:00,06:00,18,17,Overcast.,8,280,88,1014
779
+ 20220714,06:00,12:00,21,18,Overcast.,10,260,84,1014
780
+ 20220714,12:00,18:00,21,19,Scattered clouds.,15,270,75,1014
781
+ 20220714,18:00,00:00,18,17,Passing clouds.,8,260,87,1014
782
+ 20220715,00:00,06:00,17,17,Overcast.,8,260,91,1014
783
+ 20220715,06:00,12:00,20,17,Overcast.,11,210,88,1014
784
+ 20220715,12:00,18:00,21,19,Partly sunny.,15,240,81,1013
785
+ 20220715,18:00,00:00,18,17,Low clouds.,8,280,96,1014
786
+ 20220716,00:00,06:00,,,Not Available,,,,
787
+ 20220716,06:00,12:00,21,18,Fog.,8,260,88,1013
788
+ 20220716,12:00,18:00,21,18,Partly sunny.,11,250,87,1012
789
+ 20220716,18:00,00:00,18,17,Scattered clouds.,8,200,95,1011
790
+ 20220717,00:00,06:00,17,17,Clear.,9,270,100,1010
791
+ 20220717,06:00,12:00,19,18,Drizzle. Fog.,10,160,92,1012
792
+ 20220717,12:00,18:00,21,19,Broken clouds.,11,210,88,1012
793
+ 20220717,18:00,00:00,19,18,Passing clouds.,11,260,90,1012
794
+ 20220718,00:00,06:00,18,17,Clear.,4,190,98,1013
795
+ 20220718,06:00,12:00,21,17,Fog.,9,190,91,1015
796
+ 20220718,12:00,18:00,22,20,Scattered clouds.,14,270,79,1015
797
+ 20220718,18:00,00:00,19,18,Passing clouds.,6,250,92,1015
798
+ 20220719,00:00,06:00,18,18,Passing clouds.,9,310,96,1014
799
+ 20220719,06:00,12:00,23,19,Scattered clouds.,13,310,84,1016
800
+ 20220719,12:00,18:00,23,22,Scattered clouds.,16,290,78,1015
801
+ 20220719,18:00,00:00,21,19,Partly cloudy.,11,320,88,1015
802
+ 20220720,00:00,06:00,19,18,Passing clouds.,2,230,98,1016
803
+ 20220720,06:00,12:00,20,19,Broken clouds.,10,170,90,1018
804
+ 20220720,12:00,18:00,23,20,Broken clouds.,16,260,75,1017
805
+ 20220720,18:00,00:00,20,19,Passing clouds.,9,330,91,1015
806
+ 20220721,00:00,06:00,19,19,Passing clouds.,9,300,96,1015
807
+ 20220721,06:00,12:00,23,18,Scattered clouds.,10,280,85,1015
808
+ 20220721,12:00,18:00,23,19,Broken clouds.,14,260,78,1014
809
+ 20220721,18:00,00:00,19,17,Passing clouds.,6,220,88,1013
810
+ 20220722,00:00,06:00,18,16,Passing clouds.,3,180,97,1012
811
+ 20220722,06:00,12:00,21,18,Partly sunny.,8,180,82,1013
812
+ 20220722,12:00,18:00,21,19,Partly sunny.,16,250,75,1011
813
+ 20220722,18:00,00:00,18,17,Passing clouds.,9,190,88,1011
814
+ 20220723,00:00,06:00,17,17,Overcast.,11,180,92,1011
815
+ 20220723,06:00,12:00,19,17,Overcast.,13,190,87,1012
816
+ 20220723,12:00,18:00,20,19,Scattered clouds.,16,210,77,1011
817
+ 20220723,18:00,00:00,18,18,Passing clouds.,7,200,87,1012
818
+ 20220724,00:00,06:00,18,18,Overcast.,6,190,88,1012
819
+ 20220724,06:00,12:00,20,18,Overcast.,9,200,85,1013
820
+ 20220724,12:00,18:00,21,20,Partly sunny.,15,210,77,1012
821
+ 20220724,18:00,00:00,19,18,Overcast.,10,200,86,1013
822
+ 20220725,00:00,06:00,19,18,Overcast.,8,270,87,1013
823
+ 20220725,06:00,12:00,22,19,Partly sunny.,15,290,82,1013
824
+ 20220725,12:00,18:00,21,19,Partly sunny.,16,260,81,1013
825
+ 20220725,18:00,00:00,18,17,Passing clouds.,3,240,88,1013
826
+ 20220726,00:00,06:00,18,17,Overcast.,6,140,88,1013
827
+ 20220726,06:00,12:00,22,18,Partly sunny.,9,270,80,1014
828
+ 20220726,12:00,18:00,23,22,Scattered clouds.,17,290,66,1013
829
+ 20220726,18:00,00:00,22,20,Passing clouds.,12,280,84,1014
830
+ 20220727,00:00,06:00,21,20,Overcast.,10,280,88,1014
831
+ 20220727,06:00,12:00,26,20,Scattered clouds.,6,0,77,1015
832
+ 20220727,12:00,18:00,26,22,Scattered clouds.,19,280,69,1013
833
+ 20220727,18:00,00:00,21,20,Partly cloudy.,13,280,88,1014
834
+ 20220728,00:00,06:00,21,20,Passing clouds.,10,10,95,1012
835
+ 20220728,06:00,12:00,23,21,Partly sunny.,5,280,81,1013
836
+ 20220728,12:00,18:00,23,22,Scattered clouds.,16,280,68,1012
837
+ 20220728,18:00,00:00,21,18,Partly cloudy.,9,170,84,1012
838
+ 20220729,00:00,06:00,19,18,Passing clouds.,5,200,85,1012
839
+ 20220729,06:00,12:00,21,19,Partly sunny.,6,190,77,1013
840
+ 20220729,12:00,18:00,22,21,Partly sunny.,14,210,72,1012
841
+ 20220729,18:00,00:00,21,19,Passing clouds.,4,200,80,1013
842
+ 20220730,00:00,06:00,19,19,Clear.,4,200,85,1013
843
+ 20220730,06:00,12:00,23,20,Partly sunny.,7,210,78,1014
844
+ 20220730,12:00,18:00,24,22,Scattered clouds.,13,250,69,1013
845
+ 20220730,18:00,00:00,22,21,Passing clouds.,6,250,80,1014
846
+ 20220731,00:00,06:00,21,20,Passing clouds.,1,240,84,1015
847
+ 20220731,06:00,12:00,25,21,Partly sunny.,11,310,75,1015
848
+ 20220731,12:00,18:00,25,23,Partly sunny.,15,260,70,1015
849
+ 20220731,18:00,00:00,22,21,Passing clouds.,4,310,80,1016
850
+ 20220801,00:00,06:00,22,21,Clear.,8,310,86,1015
851
+ 20220801,06:00,12:00,26,22,Partly sunny.,13,310,76,1016
852
+ 20220801,12:00,18:00,26,23,Scattered clouds.,16,280,69,1015
853
+ 20220801,18:00,00:00,23,22,Passing clouds.,9,270,80,1016
854
+ 20220802,00:00,06:00,22,21,Passing clouds.,10,310,84,1016
855
+ 20220802,06:00,12:00,26,22,Scattered clouds.,15,310,74,1016
856
+ 20220802,12:00,18:00,26,24,Scattered clouds.,20,320,67,1015
857
+ 20220802,18:00,00:00,23,22,Passing clouds.,15,310,81,1015
858
+ 20220803,00:00,06:00,22,21,Passing clouds.,9,330,84,1014
859
+ 20220803,06:00,12:00,24,21,Scattered clouds.,14,290,76,1014
860
+ 20220803,12:00,18:00,24,23,Broken clouds.,17,280,67,1013
861
+ 20220803,18:00,00:00,22,21,Passing clouds.,14,320,80,1012
862
+ 20220804,00:00,06:00,21,20,Partly cloudy.,9,310,85,1012
863
+ 20220804,06:00,12:00,25,21,Scattered clouds.,11,290,72,1013
864
+ 20220804,12:00,18:00,23,22,Partly sunny.,12,310,77,1013
865
+ 20220804,18:00,00:00,23,21,Passing clouds.,11,300,81,1013
866
+ 20220805,00:00,06:00,21,21,Passing clouds.,7,320,87,1013
867
+ 20220805,06:00,12:00,26,21,Scattered clouds.,14,310,78,1014
868
+ 20220805,12:00,18:00,27,24,Scattered clouds.,24,310,65,1013
869
+ 20220805,18:00,00:00,23,22,Passing clouds.,19,320,82,1013
870
+ 20220806,00:00,06:00,22,21,Passing clouds.,15,340,83,1013
871
+ 20220806,06:00,12:00,24,21,Partly sunny.,19,320,76,1014
872
+ 20220806,12:00,18:00,24,23,Scattered clouds.,23,320,73,1011
873
+ 20220806,18:00,00:00,22,21,Passing clouds.,13,310,86,1011
874
+ 20220807,00:00,06:00,21,20,Clear.,10,340,87,1012
875
+ 20220807,06:00,12:00,25,21,Scattered clouds.,12,290,76,1013
876
+ 20220807,12:00,18:00,26,22,Broken clouds.,11,270,71,1013
877
+ 20220807,18:00,00:00,22,21,Passing clouds.,8,310,82,1013
878
+ 20220808,00:00,06:00,21,17,Fog.,4,170,96,1013
879
+ 20220808,06:00,12:00,22,18,Fog.,7,180,91,1014
880
+ 20220808,12:00,18:00,25,23,Scattered clouds.,13,200,74,1013
881
+ 20220808,18:00,00:00,23,21,Partly cloudy.,5,210,86,1013
882
+ 20220809,00:00,06:00,22,19,Passing clouds.,2,320,88,1012
883
+ 20220809,06:00,12:00,28,20,Scattered clouds.,7,190,78,1014
884
+ 20220809,12:00,18:00,27,24,Scattered clouds.,11,260,68,1013
885
+ 20220809,18:00,00:00,24,22,Partly cloudy.,6,240,82,1014
886
+ 20220810,00:00,06:00,23,20,Passing clouds.,4,320,87,1014
887
+ 20220810,06:00,12:00,28,21,Passing clouds.,9,250,75,1016
888
+ 20220810,12:00,18:00,29,26,Scattered clouds.,18,300,59,1015
889
+ 20220810,18:00,00:00,25,22,Passing clouds.,12,320,76,1015
890
+ 20220811,00:00,06:00,22,21,Passing clouds.,9,340,91,1015
891
+ 20220811,06:00,12:00,27,21,Scattered clouds.,14,320,74,1015
892
+ 20220811,12:00,18:00,28,25,Scattered clouds.,22,320,62,1014
893
+ 20220811,18:00,00:00,24,22,Passing clouds.,10,320,79,1014
894
+ 20220812,00:00,06:00,22,21,Partly cloudy.,8,320,88,1013
895
+ 20220812,06:00,12:00,26,21,Partly sunny.,11,290,77,1014
896
+ 20220812,12:00,18:00,27,24,Broken clouds.,16,290,67,1013
897
+ 20220812,18:00,00:00,24,22,Partly cloudy.,8,290,80,1013
898
+ 20220813,00:00,06:00,22,22,Clear.,6,260,85,1013
899
+ 20220813,06:00,12:00,26,22,Partly sunny.,9,200,79,1014
900
+ 20220813,12:00,18:00,25,23,Scattered clouds.,13,210,74,1013
901
+ 20220813,18:00,00:00,22,21,Fog.,8,210,86,1014
902
+ 20220814,00:00,06:00,21,20,Fog.,0,0,92,1013
903
+ 20220814,06:00,12:00,24,20,Passing clouds.,6,200,86,1013
904
+ 20220814,12:00,18:00,25,24,Passing clouds.,14,210,73,1012
905
+ 20220814,18:00,00:00,24,22,Passing clouds.,8,260,84,1011
906
+ 20220815,00:00,06:00,22,22,Overcast.,6,230,84,1011
907
+ 20220815,06:00,12:00,25,22,Partly sunny.,11,300,77,1011
908
+ 20220815,12:00,18:00,25,23,Scattered clouds.,14,260,71,1010
909
+ 20220815,18:00,00:00,22,21,Passing clouds.,7,270,83,1010
910
+ 20220816,00:00,06:00,21,20,Passing clouds.,2,170,88,1009
911
+ 20220816,06:00,12:00,26,21,Scattered clouds.,11,300,81,1009
912
+ 20220816,12:00,18:00,26,23,Scattered clouds.,14,260,69,1009
913
+ 20220816,18:00,00:00,23,21,Passing clouds.,5,190,84,1010
914
+ 20220817,00:00,06:00,22,21,Passing clouds.,5,300,86,1011
915
+ 20220817,06:00,12:00,26,21,Passing clouds.,6,320,82,1012
916
+ 20220817,12:00,18:00,26,24,Scattered clouds.,16,290,70,1012
917
+ 20220817,18:00,00:00,23,21,Passing clouds.,8,200,84,1013
918
+ 20220818,00:00,06:00,22,21,Passing clouds.,8,320,84,1013
919
+ 20220818,06:00,12:00,26,22,Scattered clouds.,14,340,74,1013
920
+ 20220818,12:00,18:00,26,23,Passing clouds.,21,300,69,1012
921
+ 20220818,18:00,00:00,23,21,Passing clouds.,13,310,80,1012
922
+ 20220819,00:00,06:00,21,20,Passing clouds.,7,320,83,1011
923
+ 20220819,06:00,12:00,23,21,Scattered clouds.,10,250,73,1010
924
+ 20220819,12:00,18:00,24,22,Scattered clouds.,15,240,68,1009
925
+ 20220819,18:00,00:00,21,20,Passing clouds.,8,180,83,1009
926
+ 20220820,00:00,06:00,20,20,Overcast.,11,160,86,1009
927
+ 20220820,06:00,12:00,23,20,Overcast.,16,160,79,1012
928
+ 20220820,12:00,18:00,24,22,Scattered clouds.,15,220,71,1012
929
+ 20220820,18:00,00:00,22,21,Passing clouds.,7,170,80,1013
930
+ 20220821,00:00,06:00,21,21,Overcast.,10,160,82,1014
931
+ 20220821,06:00,12:00,22,20,Overcast.,12,150,82,1017
932
+ 20220821,12:00,18:00,23,22,Overcast.,11,0,72,1016
933
+ 20220821,18:00,00:00,22,21,Passing clouds.,6,270,78,1016
934
+ 20220822,00:00,06:00,21,21,Overcast.,6,10,80,1016
935
+ 20220822,06:00,12:00,25,22,Overcast.,12,20,75,1016
936
+ 20220822,12:00,18:00,26,23,Scattered clouds.,21,310,67,1013
937
+ 20220822,18:00,00:00,22,21,Passing clouds.,11,310,82,1012
938
+ 20220823,00:00,06:00,21,20,Low clouds.,2,200,86,1010
939
+ 20220823,06:00,12:00,22,20,Overcast.,9,180,82,1010
940
+ 20220823,12:00,18:00,23,22,Passing clouds.,14,200,72,1009
941
+ 20220823,18:00,00:00,22,21,Passing clouds.,7,200,82,1009
942
+ 20220824,00:00,06:00,21,21,Low clouds.,5,160,86,1010
943
+ 20220824,06:00,12:00,23,21,Partly sunny.,10,190,83,1011
944
+ 20220824,12:00,18:00,23,22,Scattered clouds.,14,210,74,1011
945
+ 20220824,18:00,00:00,21,21,Passing clouds.,7,200,82,1012
946
+ 20220825,00:00,06:00,21,21,Passing clouds.,1,280,85,1013
947
+ 20220825,06:00,12:00,24,21,Passing clouds.,9,200,80,1015
948
+ 20220825,12:00,18:00,24,23,Scattered clouds.,14,270,71,1014
949
+ 20220825,18:00,00:00,22,22,Passing clouds.,9,270,81,1014
950
+ 20220826,00:00,06:00,23,22,Passing clouds.,6,310,82,1014
951
+ 20220826,06:00,12:00,26,23,Passing clouds.,14,310,74,1014
952
+ 20220826,12:00,18:00,26,23,Passing clouds.,17,270,71,1013
953
+ 20220826,18:00,00:00,22,21,Passing clouds.,6,260,82,1012
954
+ 20220827,00:00,06:00,22,21,Overcast.,3,300,80,1012
955
+ 20220827,06:00,12:00,23,22,Passing clouds.,10,270,72,1012
956
+ 20220827,12:00,18:00,24,23,Passing clouds.,14,270,67,1011
957
+ 20220827,18:00,00:00,22,21,Passing clouds.,9,310,78,1010
958
+ 20220828,00:00,06:00,22,21,Overcast.,5,280,75,1011
959
+ 20220828,06:00,12:00,24,22,Scattered clouds.,10,270,70,1012
960
+ 20220828,12:00,18:00,23,22,Passing clouds.,16,260,67,1010
961
+ 20220828,18:00,00:00,21,21,Passing clouds.,6,260,79,1010
962
+ 20220829,00:00,06:00,22,21,Overcast.,3,160,79,1011
963
+ 20220829,06:00,12:00,25,22,Partly sunny.,12,300,69,1012
964
+ 20220829,12:00,18:00,25,23,Scattered clouds.,24,300,67,1012
965
+ 20220829,18:00,00:00,22,22,Passing clouds.,18,340,78,1012
966
+ 20220830,00:00,06:00,22,21,Passing clouds.,12,340,82,1013
967
+ 20220830,06:00,12:00,26,21,Passing clouds.,18,320,72,1014
968
+ 20220830,12:00,18:00,27,25,Passing clouds.,23,320,66,1012
969
+ 20220830,18:00,00:00,24,23,Clear.,16,330,68,1012
970
+ 20220831,00:00,06:00,23,22,Clear.,9,340,76,1011
971
+ 20220831,06:00,12:00,27,22,Passing clouds.,14,330,69,1011
972
+ 20220831,12:00,18:00,28,27,Scattered clouds.,21,320,57,1009
973
+ 20220831,18:00,00:00,27,24,Clear.,17,330,54,1008
974
+ 20220901,00:00,06:00,24,22,Clear.,8,320,72,1007
975
+ 20220901,06:00,12:00,24,19,Fog.,9,180,88,1008
976
+ 20220901,12:00,18:00,25,24,Passing clouds.,10,170,77,1007
977
+ 20220901,18:00,00:00,23,22,Passing clouds.,6,190,89,1007
978
+ 20220902,00:00,06:00,22,21,Passing clouds.,4,170,94,1008
979
+ 20220902,06:00,12:00,26,22,Passing clouds.,6,190,84,1008
980
+ 20220902,12:00,18:00,29,24,Scattered clouds.,10,0,69,1007
981
+ 20220902,18:00,00:00,24,23,Fog.,4,210,84,1009
982
+ 20220903,00:00,06:00,24,23,Clear.,6,330,86,1008
983
+ 20220903,06:00,12:00,31,24,Haze.,9,160,75,1010
984
+ 20220903,12:00,18:00,33,31,Passing clouds.,15,330,49,1009
985
+ 20220903,18:00,00:00,32,27,Passing clouds.,7,340,48,1010
986
+ 20220904,00:00,06:00,31,29,Clear.,10,340,49,1010
987
+ 20220904,06:00,12:00,31,26,Partly sunny.,19,180,68,1010
988
+ 20220904,12:00,18:00,26,25,Broken clouds.,11,170,79,1009
989
+ 20220904,18:00,00:00,25,24,Partly cloudy.,5,210,86,1009
990
+ 20220905,00:00,06:00,24,22,Fog.,6,140,90,1008
991
+ 20220905,06:00,12:00,28,22,Sunny.,8,210,84,1008
992
+ 20220905,12:00,18:00,29,25,Sunny.,13,260,60,1007
993
+ 20220905,18:00,00:00,24,22,Clear.,7,200,83,1008
994
+ 20220906,00:00,06:00,22,21,Fog.,1,200,90,1008
995
+ 20220906,06:00,12:00,27,22,Passing clouds.,9,180,73,1010
996
+ 20220906,12:00,18:00,27,26,Scattered clouds.,12,210,67,1010
997
+ 20220906,18:00,00:00,25,23,Fog.,6,270,86,1012
998
+ 20220907,00:00,06:00,23,22,Fog.,1,350,91,1012
999
+ 20220907,06:00,12:00,31,23,Scattered clouds.,8,0,68,1013
1000
+ 20220907,12:00,18:00,30,28,Scattered clouds.,14,290,60,1011
1001
+ 20220907,18:00,00:00,27,23,Fog.,7,310,87,1012
1002
+ 20220908,00:00,06:00,24,22,Fog.,2,310,94,1011
1003
+ 20220908,06:00,12:00,32,22,Fog.,10,340,83,1010
1004
+ 20220908,12:00,18:00,31,28,Partly sunny.,21,340,54,1004
1005
+ 20220908,18:00,00:00,31,27,Passing clouds.,10,340,55,1001
1006
+ 20220909,00:00,06:00,31,25,Passing clouds.,11,330,62,999
1007
+ 20220909,06:00,12:00,31,26,Light rain. More clouds than sun.,13,0,67,999
1008
+ 20220909,12:00,18:00,25,21,Light rain. Fog.,14,200,92,1000
1009
+ 20220909,18:00,00:00,22,21,Overcast.,17,180,87,1004
1010
+ 20220910,00:00,06:00,23,22,Overcast.,7,30,80,1007
1011
+ 20220910,06:00,12:00,26,22,More clouds than sun.,5,350,80,1010
1012
+ 20220910,12:00,18:00,24,23,Partly sunny.,18,180,84,1011
1013
+ 20220910,18:00,00:00,23,22,Fog.,7,170,88,1012
1014
+ 20220911,00:00,06:00,23,23,Overcast.,0,0,86,1013
1015
+ 20220911,06:00,12:00,28,23,Scattered clouds.,7,330,76,1015
1016
+ 20220911,12:00,18:00,28,26,Scattered clouds.,14,240,71,1014
1017
+ 20220911,18:00,00:00,25,24,Passing clouds.,8,290,82,1015
1018
+ 20220912,00:00,06:00,24,23,Clear.,7,320,83,1014
1019
+ 20220912,06:00,12:00,25,23,Partly sunny.,8,330,85,1015
1020
+ 20220912,12:00,18:00,27,24,Broken clouds.,20,300,74,1012
1021
+ 20220912,18:00,00:00,24,22,Passing clouds.,10,320,87,1012
1022
+ 20220913,00:00,06:00,23,22,Partly cloudy.,5,280,88,1012
1023
+ 20220913,06:00,12:00,25,22,Scattered clouds.,8,200,82,1012
1024
+ 20220913,12:00,18:00,25,23,Passing clouds.,16,280,66,1011
1025
+ 20220913,18:00,00:00,22,21,Passing clouds.,9,200,82,1011
1026
+ 20220914,00:00,06:00,21,21,Passing clouds.,8,200,82,1011
1027
+ 20220914,06:00,12:00,22,21,Partly sunny.,11,210,80,1013
1028
+ 20220914,12:00,18:00,23,22,Scattered clouds.,13,210,72,1012
1029
+ 20220914,18:00,00:00,21,21,Passing clouds.,4,190,78,1013
1030
+ 20220915,00:00,06:00,21,21,Passing clouds.,3,110,74,1013
1031
+ 20220915,06:00,12:00,23,21,Partly sunny.,8,230,64,1015
1032
+ 20220915,12:00,18:00,23,22,Passing clouds.,14,250,62,1013
1033
+ 20220915,18:00,00:00,21,20,Passing clouds.,7,300,76,1013
1034
+ 20220916,00:00,06:00,19,18,Passing clouds.,4,90,82,1013
1035
+ 20220916,06:00,12:00,23,19,Partly sunny.,10,90,72,1014
1036
+ 20220916,12:00,18:00,23,22,Passing clouds.,16,280,66,1012
1037
+ 20220916,18:00,00:00,21,20,Passing clouds.,8,320,78,1011
1038
+ 20220917,00:00,06:00,20,19,Overcast.,2,110,82,1010
1039
+ 20220917,06:00,12:00,22,21,Overcast.,10,140,71,1011
1040
+ 20220917,12:00,18:00,23,21,Passing clouds.,15,240,65,1009
1041
+ 20220917,18:00,00:00,21,20,Overcast.,5,250,72,1009
1042
+ 20220918,00:00,06:00,21,20,Overcast.,8,140,66,1009
1043
+ 20220918,06:00,12:00,22,21,Partly sunny.,8,50,62,1010
1044
+ 20220918,12:00,18:00,22,21,Passing clouds.,16,280,62,1009
1045
+ 20220918,18:00,00:00,20,19,Passing clouds.,5,280,71,1010
1046
+ 20220919,00:00,06:00,20,19,Overcast.,4,20,73,1011
1047
+ 20220919,06:00,12:00,23,18,Passing clouds.,9,310,66,1011
1048
+ 20220919,12:00,18:00,24,23,Sunny.,22,290,61,1010
1049
+ 20220919,18:00,00:00,22,21,Passing clouds.,12,330,75,1011
1050
+ 20220920,00:00,06:00,21,18,Passing clouds.,2,30,84,1012
1051
+ 20220920,06:00,12:00,25,19,Passing clouds.,13,0,70,1013
1052
+ 20220920,12:00,18:00,25,23,Sunny.,24,300,64,1011
1053
+ 20220920,18:00,00:00,23,22,Passing clouds.,17,340,77,1012
1054
+ 20220921,00:00,06:00,22,21,Passing clouds.,15,330,79,1013
1055
+ 20220921,06:00,12:00,24,20,Passing clouds.,19,310,66,1014
1056
+ 20220921,12:00,18:00,26,23,Passing clouds.,28,320,57,1012
1057
+ 20220921,18:00,00:00,22,21,Passing clouds.,15,340,77,1013
1058
+ 20220922,00:00,06:00,21,17,Passing clouds.,10,330,84,1013
1059
+ 20220922,06:00,12:00,24,17,Passing clouds.,13,310,70,1014
1060
+ 20220922,12:00,18:00,25,23,Passing clouds.,19,310,63,1012
1061
+ 20220922,18:00,00:00,22,22,Passing clouds.,12,320,78,1012
1062
+ 20220923,00:00,06:00,21,21,Passing clouds.,9,340,86,1012
1063
+ 20220923,06:00,12:00,26,21,Scattered clouds.,11,330,69,1013
1064
+ 20220923,12:00,18:00,27,24,Scattered clouds.,17,290,61,1012
1065
+ 20220923,18:00,00:00,23,22,Passing clouds.,7,280,79,1014
1066
+ 20220924,00:00,06:00,22,21,Clear.,6,340,86,1014
1067
+ 20220924,06:00,12:00,26,21,Scattered clouds.,13,310,73,1015
1068
+ 20220924,12:00,18:00,27,25,Scattered clouds.,23,320,65,1015
1069
+ 20220924,18:00,00:00,23,22,Passing clouds.,12,320,81,1016
1070
+ 20220925,00:00,06:00,22,21,Clear.,11,330,89,1015
1071
+ 20220925,06:00,12:00,26,21,Passing clouds.,16,310,73,1016
1072
+ 20220925,12:00,18:00,26,24,Scattered clouds.,25,320,68,1013
1073
+ 20220925,18:00,00:00,23,22,Passing clouds.,10,310,85,1013
1074
+ 20220926,00:00,06:00,22,21,Passing clouds.,7,330,89,1012
1075
+ 20220926,06:00,12:00,26,21,Scattered clouds.,16,310,78,1013
1076
+ 20220926,12:00,18:00,26,24,Passing clouds.,20,310,71,1011
1077
+ 20220926,18:00,00:00,22,22,Passing clouds.,12,330,86,1011
1078
+ 20220927,00:00,06:00,22,21,Passing clouds.,11,340,90,1011
1079
+ 20220927,06:00,12:00,29,21,Scattered clouds.,9,350,73,1011
1080
+ 20220927,12:00,18:00,27,24,Scattered clouds.,19,290,72,1010
1081
+ 20220927,18:00,00:00,23,19,Passing clouds.,7,320,88,1011
1082
+ 20220928,00:00,06:00,21,18,Fog.,1,250,97,1012
1083
+ 20220928,06:00,12:00,23,20,Fog.,8,0,90,1013
1084
+ 20220928,12:00,18:00,22,20,Fog.,12,190,86,1013
1085
+ 20220928,18:00,00:00,21,20,Low clouds.,7,180,88,1015
1086
+ 20220929,00:00,06:00,19,18,Fog.,3,210,95,1015
1087
+ 20220929,06:00,12:00,19,18,Fog.,7,170,95,1016
1088
+ 20220929,12:00,18:00,23,21,Broken clouds.,10,210,79,1013
1089
+ 20220929,18:00,00:00,21,20,Passing clouds.,5,280,85,1013
1090
+ 20220930,00:00,06:00,20,19,Low clouds.,5,280,88,1013
1091
+ 20220930,06:00,12:00,22,20,Overcast.,8,270,79,1013
1092
+ 20220930,12:00,18:00,22,20,Passing clouds.,14,230,70,1011
1093
+ 20220930,18:00,00:00,19,19,Overcast.,9,210,76,1011
1094
+ 20221001,00:00,06:00,19,18,Overcast.,5,140,72,1011
1095
+ 20221001,06:00,12:00,21,19,Partly sunny.,8,140,66,1012
1096
+ 20221001,12:00,18:00,22,21,Passing clouds.,14,270,62,1011
1097
+ 20221001,18:00,00:00,20,19,Passing clouds.,11,270,71,1012
1098
+ 20221002,00:00,06:00,20,20,Overcast.,8,260,72,1012
1099
+ 20221002,06:00,12:00,22,20,Overcast.,9,320,70,1014
1100
+ 20221002,12:00,18:00,23,21,Scattered clouds.,21,300,64,1013
1101
+ 20221002,18:00,00:00,21,21,Passing clouds.,12,300,76,1014
1102
+ 20221003,00:00,06:00,21,20,Overcast.,9,280,82,1014
1103
+ 20221003,06:00,12:00,22,21,Overcast.,13,290,76,1015
1104
+ 20221003,12:00,18:00,22,21,Partly sunny.,19,290,72,1013
1105
+ 20221003,18:00,00:00,20,19,Passing clouds.,5,270,81,1014
1106
+ 20221004,00:00,06:00,20,20,Overcast.,5,320,83,1013
1107
+ 20221004,06:00,12:00,21,19,Overcast.,6,270,84,1014
1108
+ 20221004,12:00,18:00,21,21,Broken clouds.,12,210,82,1013
1109
+ 20221004,18:00,00:00,19,19,Passing clouds.,7,200,88,1014
1110
+ 20221005,00:00,06:00,19,18,Fog.,3,160,89,1014
1111
+ 20221005,06:00,12:00,19,18,Fog.,7,220,89,1015
1112
+ 20221005,12:00,18:00,20,19,Fog.,9,190,86,1014
1113
+ 20221005,18:00,00:00,19,19,Low clouds.,8,180,87,1015
1114
+ 20221006,00:00,06:00,19,18,Low clouds.,6,250,91,1016
1115
+ 20221006,06:00,12:00,20,18,Fog.,8,210,88,1017
1116
+ 20221006,12:00,18:00,20,20,Partly sunny.,10,180,80,1015
1117
+ 20221006,18:00,00:00,20,19,Passing clouds.,7,140,81,1017
1118
+ 20221007,00:00,06:00,20,19,Overcast.,12,340,84,1017
1119
+ 20221007,06:00,12:00,23,18,Scattered clouds.,8,330,81,1017
1120
+ 20221007,12:00,18:00,23,22,Partly sunny.,13,280,72,1016
1121
+ 20221007,18:00,00:00,21,20,Passing clouds.,8,300,80,1017
1122
+ 20221008,00:00,06:00,20,19,Fog.,4,240,88,1017
1123
+ 20221008,06:00,12:00,24,20,Low clouds.,10,10,79,1018
1124
+ 20221008,12:00,18:00,24,21,Scattered clouds.,15,260,72,1015
1125
+ 20221008,18:00,00:00,21,19,Fog.,3,210,85,1017
1126
+ 20221009,00:00,06:00,20,19,Passing clouds.,6,330,88,1016
1127
+ 20221009,06:00,12:00,23,19,Fog.,6,0,81,1017
1128
+ 20221009,12:00,18:00,23,21,Scattered clouds.,16,300,74,1015
1129
+ 20221009,18:00,00:00,21,20,Passing clouds.,3,280,82,1016
1130
+ 20221010,00:00,06:00,20,19,Overcast.,6,290,80,1015
1131
+ 20221010,06:00,12:00,21,19,Overcast.,9,290,75,1016
1132
+ 20221010,12:00,18:00,22,21,Scattered clouds.,15,290,68,1014
1133
+ 20221010,18:00,00:00,19,19,Passing clouds.,5,230,79,1014
1134
+ 20221011,00:00,06:00,19,19,Overcast.,4,120,79,1015
1135
+ 20221011,06:00,12:00,22,19,Overcast.,6,270,74,1016
1136
+ 20221011,12:00,18:00,22,20,More clouds than sun.,14,270,66,1015
1137
+ 20221011,18:00,00:00,20,19,Partly cloudy.,7,270,83,1017
1138
+ 20221012,00:00,06:00,20,19,Overcast.,3,300,82,1017
1139
+ 20221012,06:00,12:00,21,19,Overcast.,5,260,84,1018
1140
+ 20221012,12:00,18:00,22,21,Partly sunny.,19,300,75,1017
1141
+ 20221012,18:00,00:00,21,20,Overcast.,15,310,82,1017
1142
+ 20221013,00:00,06:00,20,19,Mostly cloudy.,10,310,87,1016
1143
+ 20221013,06:00,12:00,21,19,Fog.,10,280,88,1016
1144
+ 20221013,12:00,18:00,21,19,Overcast.,14,280,83,1014
1145
+ 20221013,18:00,00:00,19,19,Overcast.,7,260,86,1013
1146
+ 20221014,00:00,06:00,19,18,Drizzle. Mostly cloudy.,5,240,87,1012
1147
+ 20221014,06:00,12:00,20,19,Overcast.,5,200,80,1012
1148
+ 20221014,12:00,18:00,20,19,Overcast.,10,200,76,1010
1149
+ 20221014,18:00,00:00,19,19,Overcast.,5,150,81,1011
1150
+ 20221015,00:00,06:00,19,18,Overcast.,6,180,86,1011
1151
+ 20221015,06:00,12:00,21,19,Overcast.,5,160,73,1013
1152
+ 20221015,12:00,18:00,21,19,Broken clouds.,8,210,72,1012
1153
+ 20221015,18:00,00:00,20,18,Mostly cloudy.,4,290,78,1013
1154
+ 20221016,00:00,06:00,19,18,Mostly cloudy.,1,80,88,1014
1155
+ 20221016,06:00,12:00,21,19,Fog.,5,110,83,1016
1156
+ 20221016,12:00,18:00,23,21,Partly sunny.,22,300,69,1016
1157
+ 20221016,18:00,00:00,21,20,Passing clouds.,16,330,82,1017
1158
+ 20221017,00:00,06:00,20,17,Passing clouds.,4,340,87,1016
1159
+ 20221017,06:00,12:00,23,16,Passing clouds.,7,300,80,1016
1160
+ 20221017,12:00,18:00,23,21,Partly sunny.,19,300,73,1014
1161
+ 20221017,18:00,00:00,20,19,Passing clouds.,11,320,85,1014
1162
+ 20221018,00:00,06:00,19,17,Passing clouds.,5,10,88,1014
1163
+ 20221018,06:00,12:00,27,17,Sunny.,6,0,70,1015
1164
+ 20221018,12:00,18:00,27,23,Passing clouds.,23,300,59,1013
1165
+ 20221018,18:00,00:00,24,21,Clear.,11,0,64,1014
1166
+ 20221019,00:00,06:00,20,18,Clear.,5,350,75,1014
1167
+ 20221019,06:00,12:00,32,18,Passing clouds.,7,350,50,1015
1168
+ 20221019,12:00,18:00,34,27,Passing clouds.,15,300,26,1013
1169
+ 20221019,18:00,00:00,27,21,Passing clouds.,6,340,51,1014
1170
+ 20221020,00:00,06:00,21,18,Passing clouds.,2,140,71,1014
1171
+ 20221020,06:00,12:00,23,17,Scattered clouds.,7,180,68,1014
1172
+ 20221020,12:00,18:00,22,19,Scattered clouds.,13,170,84,1012
1173
+ 20221020,18:00,00:00,19,18,Fog.,12,170,92,1013
1174
+ 20221021,00:00,06:00,19,19,Overcast.,8,170,87,1013
1175
+ 20221021,06:00,12:00,21,19,Partly sunny.,10,130,81,1014
1176
+ 20221021,12:00,18:00,22,21,Partly sunny.,11,200,74,1011
1177
+ 20221021,18:00,00:00,21,20,Passing clouds.,7,240,78,1012
1178
+ 20221022,00:00,06:00,19,19,Passing clouds.,8,210,79,1011
1179
+ 20221022,06:00,12:00,20,19,Partly sunny.,11,210,71,1011
1180
+ 20221022,12:00,18:00,20,19,Partly sunny.,14,230,66,1009
1181
+ 20221022,18:00,00:00,19,18,Mostly cloudy.,18,210,75,1009
1182
+ 20221023,00:00,06:00,18,16,Drizzle. Mostly cloudy.,14,280,80,1009
1183
+ 20221023,06:00,12:00,19,16,Partly sunny.,4,210,62,1011
1184
+ 20221023,12:00,18:00,20,18,Passing clouds.,11,210,57,1011
1185
+ 20221023,18:00,00:00,18,17,Passing clouds.,1,90,66,1014
1186
+ 20221024,00:00,06:00,16,13,Clear.,3,100,78,1016
1187
+ 20221024,06:00,12:00,22,13,Sunny.,8,100,60,1019
1188
+ 20221024,12:00,18:00,23,21,Sunny.,21,290,39,1019
1189
+ 20221024,18:00,00:00,20,16,Clear.,10,0,58,1021
1190
+ 20221025,00:00,06:00,16,12,Clear.,4,90,59,1020
1191
+ 20221025,06:00,12:00,23,13,Sunny.,4,200,40,1019
1192
+ 20221025,12:00,18:00,23,19,Sunny.,15,290,52,1016
1193
+ 20221025,18:00,00:00,19,17,Clear.,6,180,81,1016
1194
+ 20221026,00:00,06:00,18,14,Passing clouds.,9,90,88,1015
1195
+ 20221026,06:00,12:00,19,15,Passing clouds.,6,100,70,1015
1196
+ 20221026,12:00,18:00,21,19,Scattered clouds.,13,210,67,1013
1197
+ 20221026,18:00,00:00,19,18,Passing clouds.,7,220,72,1014
1198
+ 20221027,00:00,06:00,18,15,Passing clouds.,9,180,75,1014
1199
+ 20221027,06:00,12:00,19,15,Passing clouds.,11,90,71,1016
1200
+ 20221027,12:00,18:00,20,19,Sunny.,10,210,64,1015
1201
+ 20221027,18:00,00:00,18,17,Clear.,2,220,79,1017
1202
+ 20221028,00:00,06:00,17,13,Passing clouds.,4,90,87,1019
1203
+ 20221028,06:00,12:00,21,13,Passing clouds.,5,110,74,1021
1204
+ 20221028,12:00,18:00,21,19,Scattered clouds.,13,270,68,1019
1205
+ 20221028,18:00,00:00,19,17,Passing clouds.,9,340,82,1020
1206
+ 20221029,00:00,06:00,18,14,Passing clouds.,5,0,87,1019
1207
+ 20221029,06:00,12:00,21,14,Passing clouds.,9,80,75,1020
1208
+ 20221029,12:00,18:00,22,19,Passing clouds.,19,300,67,1017
1209
+ 20221029,18:00,00:00,19,16,Passing clouds.,3,310,84,1017
1210
+ 20221030,00:00,06:00,16,13,Clear.,2,80,86,1016
1211
+ 20221030,06:00,12:00,23,13,Passing clouds.,2,150,65,1016
1212
+ 20221030,12:00,18:00,23,20,Passing clouds.,15,310,65,1013
1213
+ 20221030,18:00,00:00,19,16,Fog.,5,310,88,1014
1214
+ 20221031,00:00,06:00,18,14,Fog.,2,100,91,1013
1215
+ 20221031,06:00,12:00,23,13,Scattered clouds.,6,100,62,1013
1216
+ 20221031,12:00,18:00,22,19,Partly sunny.,11,290,74,1011
1217
+ 20221031,18:00,00:00,19,18,Passing clouds.,6,120,89,1012
1218
+ 20221101,00:00,06:00,18,17,Passing clouds.,9,180,93,1012
1219
+ 20221101,06:00,12:00,20,18,Partly sunny.,13,140,80,1013
1220
+ 20221101,12:00,18:00,19,17,Partly sunny.,16,210,67,1013
1221
+ 20221101,18:00,00:00,17,17,Passing clouds.,9,220,64,1016
1222
+ 20221102,00:00,06:00,17,17,Passing clouds.,13,160,68,1016
1223
+ 20221102,06:00,12:00,19,16,Rain. Fog.,20,170,77,1017
1224
+ 20221102,12:00,18:00,19,17,Scattered clouds.,19,260,57,1017
1225
+ 20221102,18:00,00:00,17,16,Passing clouds.,25,290,58,1018
1226
+ 20221103,00:00,06:00,16,15,Partly cloudy.,29,280,62,1017
1227
+ 20221103,06:00,12:00,17,15,Scattered clouds.,33,290,52,1018
1228
+ 20221103,12:00,18:00,17,16,Passing clouds.,19,300,49,1019
1229
+ 20221103,18:00,00:00,16,12,Passing clouds.,8,100,54,1021
1230
+ 20221104,00:00,06:00,12,9,Clear.,8,90,64,1023
1231
+ 20221104,06:00,12:00,17,9,Partly sunny.,6,90,54,1025
1232
+ 20221104,12:00,18:00,20,17,Partly sunny.,19,310,38,1023
1233
+ 20221104,18:00,00:00,17,13,Passing clouds.,5,330,66,1022
1234
+ 20221105,00:00,06:00,14,10,Clear.,2,60,68,1020
1235
+ 20221105,06:00,12:00,20,11,Partly sunny.,4,100,46,1018
1236
+ 20221105,12:00,18:00,21,18,Passing clouds.,13,280,40,1015
1237
+ 20221105,18:00,00:00,17,13,Passing clouds.,2,310,76,1014
1238
+ 20221106,00:00,06:00,12,12,Clear.,8,100,79,1013
1239
+ 20221106,06:00,12:00,18,13,Scattered clouds.,8,130,69,1014
1240
+ 20221106,12:00,18:00,18,17,Passing clouds.,9,210,71,1012
1241
+ 20221106,18:00,00:00,16,15,Passing clouds.,5,120,83,1014
1242
+ 20221107,00:00,06:00,16,15,Fog.,7,100,87,1015
1243
+ 20221107,06:00,12:00,19,15,Partly sunny.,12,130,85,1016
1244
+ 20221107,12:00,18:00,19,17,Partly sunny.,12,170,83,1014
1245
+ 20221107,18:00,00:00,17,17,Partly cloudy.,11,160,88,1015
1246
+ 20221108,00:00,06:00,17,17,Partly cloudy.,19,150,86,1013
1247
+ 20221108,06:00,12:00,19,17,Partly sunny.,35,160,83,1014
1248
+ 20221108,12:00,18:00,18,17,Light rain. Fog.,26,180,94,1012
1249
+ 20221108,18:00,00:00,17,14,Light rain. Passing clouds.,23,320,89,1013
1250
+ 20221109,00:00,06:00,16,14,Partly cloudy.,17,170,82,1015
1251
+ 20221109,06:00,12:00,17,14,Scattered clouds.,19,300,60,1018
1252
+ 20221109,12:00,18:00,17,15,Scattered clouds.,17,310,60,1019
1253
+ 20221109,18:00,00:00,14,13,Passing clouds.,10,320,69,1020
1254
+ 20221110,00:00,06:00,12,9,Clear.,2,350,82,1019
1255
+ 20221110,06:00,12:00,17,9,Sunny.,7,320,61,1020
1256
+ 20221110,12:00,18:00,18,16,Sunny.,23,340,56,1018
1257
+ 20221110,18:00,00:00,15,12,Clear.,6,350,70,1019
1258
+ 20221111,00:00,06:00,12,8,Clear.,2,90,72,1018
1259
+ 20221111,06:00,12:00,19,9,Sunny.,3,320,51,1018
1260
+ 20221111,12:00,18:00,20,16,Partly sunny.,16,310,40,1016
1261
+ 20221111,18:00,00:00,15,12,Clear.,2,300,73,1017
1262
+ 20221112,00:00,06:00,11,9,Clear.,2,120,62,1017
1263
+ 20221112,06:00,12:00,18,10,Passing clouds.,3,180,44,1018
1264
+ 20221112,12:00,18:00,18,16,Passing clouds.,12,270,58,1016
1265
+ 20221112,18:00,00:00,14,12,Passing clouds.,1,110,77,1017
1266
+ 20221113,00:00,06:00,12,11,Passing clouds.,2,90,79,1016
1267
+ 20221113,06:00,12:00,17,11,Partly sunny.,7,100,65,1017
1268
+ 20221113,12:00,18:00,17,16,Passing clouds.,17,260,56,1016
1269
+ 20221113,18:00,00:00,16,12,Clear.,11,80,68,1018
1270
+ 20221114,00:00,06:00,12,9,Clear.,8,20,72,1019
1271
+ 20221114,06:00,12:00,18,9,Scattered clouds.,7,90,50,1020
1272
+ 20221114,12:00,18:00,19,16,Passing clouds.,17,290,51,1018
1273
+ 20221114,18:00,00:00,16,12,Passing clouds.,3,20,77,1019
1274
+ 20221115,00:00,06:00,12,10,Passing clouds.,1,330,74,1019
1275
+ 20221115,06:00,12:00,19,10,Scattered clouds.,3,320,45,1019
1276
+ 20221115,12:00,18:00,20,16,Passing clouds.,17,320,56,1018
1277
+ 20221115,18:00,00:00,15,12,Clear.,3,290,85,1021
1278
+ 20221116,00:00,06:00,12,9,Clear.,1,330,88,1021
1279
+ 20221116,06:00,12:00,21,10,Sunny.,8,0,51,1023
1280
+ 20221116,12:00,18:00,22,16,Sunny.,15,270,32,1022
1281
+ 20221116,18:00,00:00,16,11,Clear.,2,210,75,1023
1282
+ 20221117,00:00,06:00,11,8,Clear.,1,90,67,1022
1283
+ 20221117,06:00,12:00,20,8,Partly sunny.,4,0,44,1022
1284
+ 20221117,12:00,18:00,22,18,Partly sunny.,14,320,42,1018
1285
+ 20221117,18:00,00:00,18,12,Passing clouds.,3,0,59,1018
1286
+ 20221118,00:00,06:00,11,9,Passing clouds.,2,60,61,1016
1287
+ 20221118,06:00,12:00,17,10,Passing clouds.,8,210,50,1015
1288
+ 20221118,12:00,18:00,17,14,Passing clouds.,9,200,76,1013
1289
+ 20221118,18:00,00:00,13,11,Clear.,2,300,89,1015
1290
+ 20221119,00:00,06:00,13,11,Fog.,1,10,93,1015
1291
+ 20221119,06:00,12:00,22,11,Fog.,2,310,69,1017
1292
+ 20221119,12:00,18:00,23,17,Sunny.,13,320,33,1016
1293
+ 20221119,18:00,00:00,15,12,Clear.,3,120,74,1019
1294
+ 20221120,00:00,06:00,12,9,Clear.,3,320,58,1020
1295
+ 20221120,06:00,12:00,23,9,Sunny.,6,350,33,1021
1296
+ 20221120,12:00,18:00,23,19,Passing clouds.,17,340,35,1018
1297
+ 20221120,18:00,00:00,18,11,Clear.,6,350,44,1019
1298
+ 20221121,00:00,06:00,12,10,Clear.,4,330,59,1019
1299
+ 20221121,06:00,12:00,23,11,Partly sunny.,5,0,33,1019
1300
+ 20221121,12:00,18:00,23,17,Partly sunny.,16,310,34,1017
1301
+ 20221121,18:00,00:00,17,12,Passing clouds.,3,50,64,1018
1302
+ 20221122,00:00,06:00,12,9,Passing clouds.,0,0,71,1018
1303
+ 20221122,06:00,12:00,22,9,Partly sunny.,6,330,41,1018
1304
+ 20221122,12:00,18:00,21,16,Scattered clouds.,13,300,40,1017
1305
+ 20221122,18:00,00:00,16,11,Passing clouds.,3,0,81,1018
1306
+ 20221123,00:00,06:00,11,8,Passing clouds.,1,350,73,1017
1307
+ 20221123,06:00,12:00,20,9,Passing clouds.,3,20,40,1018
1308
+ 20221123,12:00,18:00,19,16,Passing clouds.,12,320,57,1017
1309
+ 20221123,18:00,00:00,14,10,Clear.,1,300,78,1018
1310
+ 20221124,00:00,06:00,11,8,Clear.,4,340,70,1019
1311
+ 20221124,06:00,12:00,27,8,Sunny.,9,330,33,1021
1312
+ 20221124,12:00,18:00,27,18,Sunny.,13,190,26,1020
1313
+ 20221124,18:00,00:00,18,13,Clear.,6,310,47,1022
1314
+ 20221125,00:00,06:00,12,11,Clear.,5,30,56,1024
1315
+ 20221125,06:00,12:00,22,9,Scattered clouds.,4,110,38,1024
1316
+ 20221125,12:00,18:00,22,18,Partly sunny.,21,310,33,1022
1317
+ 20221125,18:00,00:00,17,10,Clear.,1,20,56,1022
1318
+ 20221126,00:00,06:00,11,9,Clear.,1,0,64,1021
1319
+ 20221126,06:00,12:00,17,10,Passing clouds.,9,140,47,1021
1320
+ 20221126,12:00,18:00,17,14,Passing clouds.,9,200,81,1017
1321
+ 20221126,18:00,00:00,14,11,Fog.,1,110,92,1018
1322
+ 20221127,00:00,06:00,11,7,Clear.,0,0,89,1017
1323
+ 20221127,06:00,12:00,18,8,Passing clouds.,4,350,67,1018
1324
+ 20221127,12:00,18:00,18,15,Passing clouds.,9,240,73,1017
1325
+ 20221127,18:00,00:00,14,13,Fog.,8,140,86,1016
1326
+ 20221128,00:00,06:00,14,12,Passing clouds.,8,90,86,1015
1327
+ 20221128,06:00,12:00,16,14,Partly sunny.,13,190,66,1015
1328
+ 20221128,12:00,18:00,16,15,Partly sunny.,14,200,64,1013
1329
+ 20221128,18:00,00:00,15,14,Passing clouds.,12,200,70,1013
1330
+ 20221129,00:00,06:00,15,14,Partly cloudy.,11,230,75,1013
1331
+ 20221129,06:00,12:00,17,14,Partly sunny.,15,210,74,1015
1332
+ 20221129,12:00,18:00,16,14,Passing clouds.,9,210,65,1015
1333
+ 20221129,18:00,00:00,13,11,Passing clouds.,4,100,77,1016
1334
+ 20221130,00:00,06:00,12,11,Passing clouds.,0,0,80,1016
1335
+ 20221130,06:00,12:00,15,12,Partly sunny.,4,100,70,1017
1336
+ 20221130,12:00,18:00,16,13,Passing clouds.,9,220,60,1015
1337
+ 20221130,18:00,00:00,14,13,Passing clouds.,4,100,65,1016
1338
+ 20221201,00:00,06:00,13,13,Passing clouds.,9,90,67,1016
1339
+ 20221201,06:00,12:00,16,14,Overcast.,11,120,58,1018
1340
+ 20221201,12:00,18:00,17,15,Partly sunny.,7,200,53,1017
1341
+ 20221201,18:00,00:00,15,14,Passing clouds.,6,170,62,1019
1342
+ 20221202,00:00,06:00,14,12,Passing clouds.,6,90,64,1019
1343
+ 20221202,06:00,12:00,19,11,Broken clouds.,6,110,58,1020
1344
+ 20221202,12:00,18:00,18,16,Partly sunny.,20,300,61,1018
1345
+ 20221202,18:00,00:00,16,13,Passing clouds.,10,340,79,1018
1346
+ 20221203,00:00,06:00,13,11,Clear.,1,330,88,1018
1347
+ 20221203,06:00,12:00,17,11,Partly sunny.,3,20,78,1019
1348
+ 20221203,12:00,18:00,19,16,Partly sunny.,13,320,72,1018
1349
+ 20221203,18:00,00:00,15,13,Fog.,7,0,91,1019
1350
+ 20221204,00:00,06:00,14,12,Fog.,5,10,93,1019
1351
+ 20221204,06:00,12:00,17,11,Fog.,3,310,85,1020
1352
+ 20221204,12:00,18:00,17,16,Passing clouds.,13,330,81,1018
1353
+ 20221204,18:00,00:00,17,15,Passing clouds.,5,320,85,1018
1354
+ 20221205,00:00,06:00,16,14,Overcast.,1,80,88,1017
1355
+ 20221205,06:00,12:00,18,15,Broken clouds.,12,310,79,1018
1356
+ 20221205,12:00,18:00,18,14,Partly sunny.,19,300,63,1016
1357
+ 20221205,18:00,00:00,14,13,Partly cloudy.,6,250,74,1017
1358
+ 20221206,00:00,06:00,13,12,Partly cloudy.,7,110,82,1017
1359
+ 20221206,06:00,12:00,17,12,Broken clouds.,8,110,75,1018
1360
+ 20221206,12:00,18:00,16,14,Broken clouds.,13,290,64,1017
1361
+ 20221206,18:00,00:00,14,12,Passing clouds.,6,320,69,1018
1362
+ 20221207,00:00,06:00,12,10,Partly cloudy.,6,110,82,1020
1363
+ 20221207,06:00,12:00,16,10,Scattered clouds.,6,140,70,1023
1364
+ 20221207,12:00,18:00,17,14,Passing clouds.,14,270,63,1023
1365
+ 20221207,18:00,00:00,13,11,Passing clouds.,3,300,77,1025
1366
+ 20221208,00:00,06:00,9,8,Passing clouds.,3,90,76,1025
1367
+ 20221208,06:00,12:00,16,7,Passing clouds.,9,320,62,1026
1368
+ 20221208,12:00,18:00,16,14,Passing clouds.,22,320,62,1023
1369
+ 20221208,18:00,00:00,14,9,Passing clouds.,5,330,80,1023
1370
+ 20221209,00:00,06:00,9,7,Passing clouds.,6,90,82,1022
1371
+ 20221209,06:00,12:00,16,7,Passing clouds.,6,100,67,1022
1372
+ 20221209,12:00,18:00,16,14,Passing clouds.,13,290,63,1019
1373
+ 20221209,18:00,00:00,13,8,Clear.,5,0,81,1020
1374
+ 20221210,00:00,06:00,9,8,Clear.,0,0,84,1020
1375
+ 20221210,06:00,12:00,17,7,Passing clouds.,4,160,63,1021
1376
+ 20221210,12:00,18:00,17,13,Passing clouds.,7,320,68,1019
1377
+ 20221210,18:00,00:00,13,11,Passing clouds.,4,90,85,1018
1378
+ 20221211,00:00,06:00,13,11,Mostly cloudy.,12,120,82,1017
1379
+ 20221211,06:00,12:00,14,13,Light rain. Fog.,35,170,83,1015
1380
+ 20221211,12:00,18:00,14,13,Light rain. Mostly cloudy.,19,300,85,1013
1381
+ 20221211,18:00,00:00,13,11,Passing clouds.,12,260,69,1014
1382
+ 20221212,00:00,06:00,10,9,Clear.,8,110,84,1013
1383
+ 20221212,06:00,12:00,12,9,Broken clouds.,9,80,81,1013
1384
+ 20221212,12:00,18:00,13,12,Broken clouds.,9,170,71,1012
1385
+ 20221212,18:00,00:00,11,9,Passing clouds.,4,90,83,1014
1386
+ 20221213,00:00,06:00,9,7,Passing clouds.,2,130,87,1015
1387
+ 20221213,06:00,12:00,14,8,Broken clouds.,6,80,73,1017
1388
+ 20221213,12:00,18:00,14,12,Scattered clouds.,7,190,62,1017
1389
+ 20221213,18:00,00:00,12,8,Passing clouds.,0,0,75,1020
1390
+ 20221214,00:00,06:00,8,7,Clear.,4,100,76,1020
1391
+ 20221214,06:00,12:00,16,6,Scattered clouds.,4,100,60,1022
1392
+ 20221214,12:00,18:00,16,13,Passing clouds.,17,310,59,1020
1393
+ 20221214,18:00,00:00,12,9,Clear.,3,30,77,1022
1394
+ 20221215,00:00,06:00,9,8,Passing clouds.,2,70,78,1020
1395
+ 20221215,06:00,12:00,16,7,Partly sunny.,3,350,64,1020
1396
+ 20221215,12:00,18:00,16,14,Partly sunny.,17,320,68,1019
1397
+ 20221215,18:00,00:00,14,11,Passing clouds.,9,340,80,1019
1398
+ 20221216,00:00,06:00,11,10,Passing clouds.,3,320,86,1019
1399
+ 20221216,06:00,12:00,19,11,Partly sunny.,4,330,56,1019
1400
+ 20221216,12:00,18:00,19,19,Passing clouds.,16,0,30,1018
1401
+ 20221216,18:00,00:00,,,Not Available,,,,
1402
+ 20221217,00:00,06:00,7,6,Clear.,4,340,68,1017
1403
+ 20221217,06:00,12:00,18,7,Scattered clouds.,5,340,41,1018
1404
+ 20221217,12:00,18:00,18,14,Broken clouds.,11,340,35,1015
1405
+ 20221217,18:00,00:00,13,12,Passing clouds.,5,30,57,1015
1406
+ 20221218,00:00,06:00,13,9,Overcast.,4,230,63,1014
1407
+ 20221218,06:00,12:00,16,9,Passing clouds.,3,300,56,1015
1408
+ 20221218,12:00,18:00,16,12,Sunny.,6,210,72,1016
1409
+ 20221218,18:00,00:00,12,8,Clear.,2,330,88,1019
1410
+ 20221219,00:00,06:00,9,6,Clear.,3,60,68,1021
1411
+ 20221219,06:00,12:00,17,7,Passing clouds.,5,350,49,1023
1412
+ 20221219,12:00,18:00,17,13,Scattered clouds.,15,310,56,1022
1413
+ 20221219,18:00,00:00,13,9,Passing clouds.,7,350,81,1024
1414
+ 20221220,00:00,06:00,9,6,Passing clouds.,1,0,87,1024
1415
+ 20221220,06:00,12:00,18,7,Partly sunny.,7,340,55,1024
1416
+ 20221220,12:00,18:00,18,14,Passing clouds.,17,320,56,1022
1417
+ 20221220,18:00,00:00,13,9,Passing clouds.,2,350,81,1022
1418
+ 20221221,00:00,06:00,9,7,Passing clouds.,2,50,82,1020
1419
+ 20221221,06:00,12:00,19,7,Passing clouds.,5,300,55,1020
1420
+ 20221221,12:00,18:00,20,14,Sunny.,20,330,58,1017
1421
+ 20221221,18:00,00:00,14,10,Passing clouds.,3,350,78,1018
1422
+ 20221222,00:00,06:00,9,8,Passing clouds.,0,0,78,1018
1423
+ 20221222,06:00,12:00,16,8,Scattered clouds.,5,10,61,1018
1424
+ 20221222,12:00,18:00,17,14,Partly sunny.,6,200,82,1017
1425
+ 20221222,18:00,00:00,13,12,Fog.,1,10,96,1019
1426
+ 20221223,00:00,06:00,11,10,Fog.,6,10,96,1019
1427
+ 20221223,06:00,12:00,17,9,Scattered clouds.,6,340,78,1021
1428
+ 20221223,12:00,18:00,17,13,Broken clouds.,15,310,84,1019
1429
+ 20221223,18:00,00:00,13,11,Fog.,8,330,94,1022
1430
+ 20221224,00:00,06:00,11,10,Fog.,9,0,95,1022
1431
+ 20221224,06:00,12:00,19,9,Sunny.,8,340,79,1024
1432
+ 20221224,12:00,18:00,19,14,Sunny.,17,340,61,1021
1433
+ 20221224,18:00,00:00,15,11,Clear.,5,340,79,1022
1434
+ 20221225,00:00,06:00,12,9,Clear.,4,50,82,1021
1435
+ 20221225,06:00,12:00,27,10,Sunny.,4,290,51,1021
1436
+ 20221225,12:00,18:00,25,18,Sunny.,14,320,29,1019
1437
+ 20221225,18:00,00:00,16,13,Clear.,4,320,50,1019
1438
+ 20221226,00:00,06:00,14,11,Clear.,2,40,66,1019
1439
+ 20221226,06:00,12:00,27,12,Sunny.,8,0,43,1018
1440
+ 20221226,12:00,18:00,26,15,Sunny.,6,310,48,1017
1441
+ 20221226,18:00,00:00,14,12,Passing clouds.,3,130,89,1018
1442
+ 20221227,00:00,06:00,12,11,Passing clouds.,1,110,80,1017
1443
+ 20221227,06:00,12:00,14,12,Fog.,6,180,92,1018
1444
+ 20221227,12:00,18:00,16,14,Partly sunny.,7,250,89,1015
1445
+ 20221227,18:00,00:00,15,14,Fog.,6,220,94,1013
1446
+ 20221228,00:00,06:00,15,14,Light rain. Fog.,17,160,96,1011
1447
+ 20221228,06:00,12:00,17,15,Partly sunny.,13,310,80,1014
1448
+ 20221228,12:00,18:00,17,14,Scattered clouds.,9,250,77,1013
1449
+ 20221228,18:00,00:00,14,13,Passing clouds.,2,210,83,1015
1450
+ 20221229,00:00,06:00,13,13,Partly cloudy.,5,100,88,1014
1451
+ 20221229,06:00,12:00,16,13,Broken clouds.,11,140,83,1016
1452
+ 20221229,12:00,18:00,16,15,Broken clouds.,8,210,78,1016
1453
+ 20221229,18:00,00:00,15,14,Partly cloudy.,8,190,84,1018
1454
+ 20221230,00:00,06:00,14,13,Partly cloudy.,1,220,92,1018
1455
+ 20221230,06:00,12:00,16,14,Fog.,2,130,85,1019
1456
+ 20221230,12:00,18:00,16,15,Passing clouds.,5,190,83,1019
1457
+ 20221230,18:00,00:00,14,14,Fog.,1,100,91,1020
1458
+ 20221231,00:00,06:00,14,14,Fog.,1,130,90,1018
1459
+ 20221231,06:00,12:00,15,14,Fog.,4,190,90,1018
1460
+ 20221231,12:00,18:00,16,15,More clouds than sun.,10,200,89,1016
1461
+ 20221231,18:00,00:00,16,15,Overcast.,27,170,89,1012
weather/san-diego/raw_data/daily_weather_2023.csv ADDED
@@ -0,0 +1,1460 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20230101,00:00,06:00,15,14,Heavy rain. Fog.,35,180,88,1008
3
+ 20230101,06:00,12:00,15,14,Mostly cloudy.,34,270,70,1010
4
+ 20230101,12:00,18:00,16,13,Mostly cloudy.,33,280,69,1009
5
+ 20230101,18:00,00:00,14,13,Mostly cloudy.,26,270,72,1012
6
+ 20230102,00:00,06:00,13,12,Passing clouds.,17,280,74,1013
7
+ 20230102,06:00,12:00,15,11,Fog.,9,210,77,1016
8
+ 20230102,12:00,18:00,15,13,Passing clouds.,14,210,69,1017
9
+ 20230102,18:00,00:00,14,13,Mostly cloudy.,16,170,76,1017
10
+ 20230103,00:00,06:00,14,13,Light rain. Fog.,22,180,82,1017
11
+ 20230103,06:00,12:00,14,12,Light rain. Fog.,22,160,86,1018
12
+ 20230103,12:00,18:00,15,14,Broken clouds.,27,160,86,1017
13
+ 20230103,18:00,00:00,16,15,Mostly cloudy.,26,160,84,1019
14
+ 20230104,00:00,06:00,15,15,Mostly cloudy.,14,110,90,1019
15
+ 20230104,06:00,12:00,17,15,Broken clouds.,16,190,88,1020
16
+ 20230104,12:00,18:00,17,15,Broken clouds.,12,180,88,1018
17
+ 20230104,18:00,00:00,16,15,Low clouds.,15,160,88,1019
18
+ 20230105,00:00,06:00,16,14,Partly cloudy.,18,120,81,1018
19
+ 20230105,06:00,12:00,15,14,Fog.,27,160,84,1019
20
+ 20230105,12:00,18:00,16,14,Fog.,20,190,75,1019
21
+ 20230105,18:00,00:00,15,12,Passing clouds.,8,320,94,1023
22
+ 20230106,00:00,06:00,13,10,Fog.,3,0,95,1022
23
+ 20230106,06:00,12:00,16,9,Scattered clouds.,8,340,86,1023
24
+ 20230106,12:00,18:00,16,14,Passing clouds.,21,320,73,1021
25
+ 20230106,18:00,00:00,13,12,Clear.,11,0,87,1021
26
+ 20230107,00:00,06:00,10,8,Fog.,2,110,96,1020
27
+ 20230107,06:00,12:00,17,8,Partly sunny.,4,90,64,1021
28
+ 20230107,12:00,18:00,17,14,Scattered clouds.,5,170,58,1020
29
+ 20230107,18:00,00:00,14,12,Passing clouds.,6,280,77,1021
30
+ 20230108,00:00,06:00,11,9,Clear.,6,110,79,1021
31
+ 20230108,06:00,12:00,16,9,Passing clouds.,4,80,70,1022
32
+ 20230108,12:00,18:00,17,14,Scattered clouds.,10,330,62,1020
33
+ 20230108,18:00,00:00,14,11,Passing clouds.,6,320,92,1021
34
+ 20230109,00:00,06:00,11,10,Clear.,2,120,81,1021
35
+ 20230109,06:00,12:00,17,11,Partly sunny.,7,140,68,1022
36
+ 20230109,12:00,18:00,16,16,Partly sunny.,16,170,84,1019
37
+ 20230109,18:00,00:00,16,15,Partly cloudy.,16,130,85,1020
38
+ 20230110,00:00,06:00,16,14,Light rain. Partly cloudy.,22,130,76,1019
39
+ 20230110,06:00,12:00,16,14,Partly sunny.,29,160,90,1019
40
+ 20230110,12:00,18:00,16,14,Light rain. Fog.,17,150,92,1019
41
+ 20230110,18:00,00:00,14,12,Fog.,5,110,95,1021
42
+ 20230111,00:00,06:00,11,10,Passing clouds.,2,110,97,1021
43
+ 20230111,06:00,12:00,16,11,Partly sunny.,2,50,80,1024
44
+ 20230111,12:00,18:00,16,14,Scattered clouds.,17,330,74,1023
45
+ 20230111,18:00,00:00,13,11,Passing clouds.,11,350,87,1023
46
+ 20230112,00:00,06:00,11,9,Passing clouds.,8,0,89,1021
47
+ 20230112,06:00,12:00,21,9,Partly sunny.,5,330,60,1022
48
+ 20230112,12:00,18:00,22,17,Partly sunny.,6,320,42,1020
49
+ 20230112,18:00,00:00,16,12,Passing clouds.,3,340,72,1021
50
+ 20230113,00:00,06:00,11,9,Passing clouds.,2,0,81,1020
51
+ 20230113,06:00,12:00,18,10,Partly sunny.,4,100,60,1021
52
+ 20230113,12:00,18:00,17,14,Partly sunny.,9,280,80,1019
53
+ 20230113,18:00,00:00,13,10,Fog.,2,320,98,1019
54
+ 20230114,00:00,06:00,11,10,Fog.,2,110,94,1017
55
+ 20230114,06:00,12:00,14,10,Broken clouds.,9,180,86,1016
56
+ 20230114,12:00,18:00,15,14,Fog.,28,160,96,1013
57
+ 20230114,18:00,00:00,16,14,Light rain. Mostly cloudy.,25,210,72,1012
58
+ 20230115,00:00,06:00,15,14,Passing clouds.,18,290,90,1011
59
+ 20230115,06:00,12:00,16,13,Partly sunny.,13,260,82,1013
60
+ 20230115,12:00,18:00,16,13,Broken clouds.,11,190,86,1011
61
+ 20230115,18:00,00:00,14,12,Rain. Mostly cloudy.,13,130,81,1011
62
+ 20230116,00:00,06:00,14,13,Light rain. Mostly cloudy.,33,170,0,1008
63
+ 20230116,06:00,12:00,,,Not Available,,,,
64
+ 20230116,12:00,18:00,,,Not Available,,,,
65
+ 20230116,18:00,00:00,,,Not Available,,,,
66
+ 20230117,00:00,06:00,13,12,Partly cloudy.,27,280,73,1012
67
+ 20230117,06:00,12:00,14,13,Broken clouds.,27,300,64,1014
68
+ 20230117,12:00,18:00,14,12,Broken clouds.,20,290,65,1014
69
+ 20230117,18:00,00:00,11,9,Passing clouds.,4,90,80,1017
70
+ 20230118,00:00,06:00,9,7,Passing clouds.,4,110,86,1019
71
+ 20230118,06:00,12:00,14,7,Scattered clouds.,5,130,73,1021
72
+ 20230118,12:00,18:00,14,13,Partly sunny.,17,340,60,1020
73
+ 20230118,18:00,00:00,12,9,Passing clouds.,7,0,80,1021
74
+ 20230119,00:00,06:00,9,6,Passing clouds.,4,340,83,1021
75
+ 20230119,06:00,12:00,14,7,Passing clouds.,2,130,71,1021
76
+ 20230119,12:00,18:00,14,13,Broken clouds.,12,270,70,1019
77
+ 20230119,18:00,00:00,14,12,Passing clouds.,19,290,74,1019
78
+ 20230120,00:00,06:00,12,9,Passing clouds.,9,230,81,1020
79
+ 20230120,06:00,12:00,14,8,Passing clouds.,5,140,75,1022
80
+ 20230120,12:00,18:00,15,13,Passing clouds.,16,300,64,1022
81
+ 20230120,18:00,00:00,12,9,Clear.,5,0,72,1024
82
+ 20230121,00:00,06:00,9,7,Clear.,1,80,82,1025
83
+ 20230121,06:00,12:00,15,6,Sunny.,3,80,57,1026
84
+ 20230121,12:00,18:00,16,13,Sunny.,18,300,54,1023
85
+ 20230121,18:00,00:00,13,8,Clear.,3,20,78,1023
86
+ 20230122,00:00,06:00,9,4,Clear.,3,110,75,1021
87
+ 20230122,06:00,12:00,14,6,Scattered clouds.,10,100,69,1018
88
+ 20230122,12:00,18:00,14,13,Scattered clouds.,11,190,72,1012
89
+ 20230122,18:00,00:00,12,10,Passing clouds.,8,10,82,1012
90
+ 20230123,00:00,06:00,10,7,Clear.,10,20,71,1013
91
+ 20230123,06:00,12:00,15,7,Passing clouds.,5,20,41,1016
92
+ 20230123,12:00,18:00,17,13,Sunny.,19,310,37,1016
93
+ 20230123,18:00,00:00,13,9,Clear.,7,70,67,1020
94
+ 20230124,00:00,06:00,9,6,Clear.,7,110,56,1023
95
+ 20230124,06:00,12:00,16,6,Sunny.,6,310,56,1026
96
+ 20230124,12:00,18:00,17,14,Passing clouds.,19,320,42,1024
97
+ 20230124,18:00,00:00,13,9,Clear.,5,330,78,1025
98
+ 20230125,00:00,06:00,9,6,Clear.,1,10,72,1025
99
+ 20230125,06:00,12:00,18,6,Passing clouds.,5,20,56,1025
100
+ 20230125,12:00,18:00,18,15,Passing clouds.,16,330,41,1023
101
+ 20230125,18:00,00:00,13,9,Passing clouds.,4,330,68,1024
102
+ 20230126,00:00,06:00,10,9,Clear.,3,350,68,1025
103
+ 20230126,06:00,12:00,20,11,Passing clouds.,27,30,25,1027
104
+ 20230126,12:00,18:00,21,18,Passing clouds.,29,70,16,1024
105
+ 20230126,18:00,00:00,17,11,Clear.,12,20,33,1025
106
+ 20230127,00:00,06:00,11,6,Clear.,4,110,56,1024
107
+ 20230127,06:00,12:00,18,9,Passing clouds.,3,100,38,1022
108
+ 20230127,12:00,18:00,18,14,Passing clouds.,15,320,47,1016
109
+ 20230127,18:00,00:00,13,9,Clear.,3,270,79,1016
110
+ 20230128,00:00,06:00,10,9,Passing clouds.,6,110,72,1015
111
+ 20230128,06:00,12:00,14,10,Broken clouds.,10,180,67,1016
112
+ 20230128,12:00,18:00,14,13,Scattered clouds.,13,190,71,1015
113
+ 20230128,18:00,00:00,13,13,Overcast.,20,180,68,1015
114
+ 20230129,00:00,06:00,13,12,Overcast.,20,150,74,1014
115
+ 20230129,06:00,12:00,14,12,Partly sunny.,22,130,77,1015
116
+ 20230129,12:00,18:00,14,12,Partly sunny.,16,250,71,1013
117
+ 20230129,18:00,00:00,12,11,Overcast.,8,230,78,1014
118
+ 20230130,00:00,06:00,11,10,Passing clouds.,9,100,89,1013
119
+ 20230130,06:00,12:00,13,11,Partly sunny.,12,90,82,1014
120
+ 20230130,12:00,18:00,13,12,Light rain. Mostly cloudy.,10,80,82,1013
121
+ 20230130,18:00,00:00,12,12,Overcast.,10,140,74,1014
122
+ 20230131,00:00,06:00,11,9,Light rain. Overcast.,5,90,86,1016
123
+ 20230131,06:00,12:00,14,9,Passing clouds.,7,0,72,1018
124
+ 20230131,12:00,18:00,15,13,Passing clouds.,14,300,51,1017
125
+ 20230131,18:00,00:00,12,9,Clear.,1,90,74,1019
126
+ 20230201,00:00,06:00,9,7,Clear.,6,100,71,1019
127
+ 20230201,06:00,12:00,15,7,Sunny.,4,40,53,1021
128
+ 20230201,12:00,18:00,16,14,Sunny.,10,320,49,1020
129
+ 20230201,18:00,00:00,13,9,Passing clouds.,5,330,79,1023
130
+ 20230202,00:00,06:00,9,6,Clear.,3,50,74,1024
131
+ 20230202,06:00,12:00,17,6,Scattered clouds.,2,170,50,1026
132
+ 20230202,12:00,18:00,17,14,Partly sunny.,10,310,41,1025
133
+ 20230202,18:00,00:00,13,11,Passing clouds.,4,320,71,1025
134
+ 20230203,00:00,06:00,11,9,Partly cloudy.,2,320,66,1023
135
+ 20230203,06:00,12:00,17,10,Partly sunny.,6,10,55,1023
136
+ 20230203,12:00,18:00,19,14,Scattered clouds.,18,320,53,1021
137
+ 20230203,18:00,00:00,14,9,Passing clouds.,6,320,74,1021
138
+ 20230204,00:00,06:00,10,7,Clear.,0,0,84,1020
139
+ 20230204,06:00,12:00,17,7,Scattered clouds.,1,70,68,1021
140
+ 20230204,12:00,18:00,17,14,Scattered clouds.,13,300,63,1020
141
+ 20230204,18:00,00:00,14,11,Passing clouds.,6,300,91,1022
142
+ 20230205,00:00,06:00,11,9,Fog.,2,100,93,1022
143
+ 20230205,06:00,12:00,16,10,Cloudy.,5,320,83,1023
144
+ 20230205,12:00,18:00,16,14,Partly sunny.,16,300,75,1022
145
+ 20230205,18:00,00:00,14,13,Passing clouds.,15,290,76,1022
146
+ 20230206,00:00,06:00,13,11,Passing clouds.,15,300,75,1021
147
+ 20230206,06:00,12:00,16,11,Sunny.,13,350,64,1023
148
+ 20230206,12:00,18:00,16,14,Sunny.,22,330,55,1021
149
+ 20230206,18:00,00:00,14,9,Clear.,7,350,72,1022
150
+ 20230207,00:00,06:00,10,7,Clear.,2,260,78,1023
151
+ 20230207,06:00,12:00,19,7,Passing clouds.,3,330,50,1025
152
+ 20230207,12:00,18:00,19,16,Sunny.,17,300,40,1023
153
+ 20230207,18:00,00:00,15,11,Passing clouds.,4,30,57,1023
154
+ 20230208,00:00,06:00,10,8,Passing clouds.,2,280,74,1023
155
+ 20230208,06:00,12:00,19,8,Passing clouds.,2,200,50,1024
156
+ 20230208,12:00,18:00,19,16,Sunny.,19,320,38,1022
157
+ 20230208,18:00,00:00,15,11,Clear.,7,330,51,1022
158
+ 20230209,00:00,06:00,10,8,Clear.,4,350,68,1022
159
+ 20230209,06:00,12:00,24,8,Sunny.,3,310,48,1022
160
+ 20230209,12:00,18:00,24,18,Sunny.,14,320,31,1020
161
+ 20230209,18:00,00:00,16,14,Clear.,2,80,50,1021
162
+ 20230210,00:00,06:00,12,9,Clear.,3,350,57,1020
163
+ 20230210,06:00,12:00,22,8,Scattered clouds.,7,330,32,1020
164
+ 20230210,12:00,18:00,22,18,Partly sunny.,19,340,21,1017
165
+ 20230210,18:00,00:00,17,14,Passing clouds.,4,340,38,1016
166
+ 20230211,00:00,06:00,14,11,Clear.,2,60,74,1014
167
+ 20230211,06:00,12:00,16,11,Mostly cloudy.,9,140,73,1015
168
+ 20230211,12:00,18:00,15,13,Broken clouds.,17,280,61,1014
169
+ 20230211,18:00,00:00,12,10,Passing clouds.,4,280,71,1014
170
+ 20230212,00:00,06:00,11,8,Passing clouds.,7,120,74,1013
171
+ 20230212,06:00,12:00,13,8,Scattered clouds.,9,100,66,1013
172
+ 20230212,12:00,18:00,14,12,Scattered clouds.,17,220,68,1012
173
+ 20230212,18:00,00:00,12,11,Rain. Mostly cloudy.,15,190,82,1013
174
+ 20230213,00:00,06:00,11,9,Rain. Passing clouds.,10,130,86,1012
175
+ 20230213,06:00,12:00,13,9,Broken clouds.,10,130,75,1015
176
+ 20230213,12:00,18:00,14,13,Scattered clouds.,22,170,79,1014
177
+ 20230213,18:00,00:00,13,13,Passing clouds.,14,220,79,1016
178
+ 20230214,00:00,06:00,13,13,Passing clouds.,11,200,76,1015
179
+ 20230214,06:00,12:00,13,12,Mostly cloudy.,20,250,73,1015
180
+ 20230214,12:00,18:00,13,12,Broken clouds.,26,250,68,1012
181
+ 20230214,18:00,00:00,13,12,Passing clouds.,30,280,53,1012
182
+ 20230215,00:00,06:00,11,7,Passing clouds.,15,10,51,1015
183
+ 20230215,06:00,12:00,13,7,Sunny.,11,0,44,1020
184
+ 20230215,12:00,18:00,14,13,Sunny.,19,300,35,1020
185
+ 20230215,18:00,00:00,12,8,Clear.,5,30,54,1024
186
+ 20230216,00:00,06:00,8,5,Clear.,3,90,54,1024
187
+ 20230216,06:00,12:00,17,5,Scattered clouds.,15,100,31,1024
188
+ 20230216,12:00,18:00,19,13,Partly sunny.,16,60,25,1021
189
+ 20230216,18:00,00:00,13,9,Passing clouds.,2,280,50,1021
190
+ 20230217,00:00,06:00,9,7,Passing clouds.,3,140,48,1019
191
+ 20230217,06:00,12:00,17,7,Partly sunny.,8,350,35,1017
192
+ 20230217,12:00,18:00,17,13,Broken clouds.,11,270,36,1014
193
+ 20230217,18:00,00:00,12,11,Passing clouds.,2,90,65,1015
194
+ 20230218,00:00,06:00,11,7,Clear.,2,350,65,1015
195
+ 20230218,06:00,12:00,17,8,Partly sunny.,3,60,43,1017
196
+ 20230218,12:00,18:00,17,13,Passing clouds.,8,200,52,1015
197
+ 20230218,18:00,00:00,13,9,Clear.,5,340,71,1017
198
+ 20230219,00:00,06:00,8,7,Clear.,2,90,57,1016
199
+ 20230219,06:00,12:00,15,7,Scattered clouds.,6,110,51,1017
200
+ 20230219,12:00,18:00,14,13,Partly sunny.,9,200,73,1018
201
+ 20230219,18:00,00:00,13,10,Passing clouds.,8,350,87,1018
202
+ 20230220,00:00,06:00,9,8,Clear.,1,330,87,1018
203
+ 20230220,06:00,12:00,17,7,Sunny.,5,170,69,1019
204
+ 20230220,12:00,18:00,18,14,Sunny.,16,310,57,1016
205
+ 20230220,18:00,00:00,14,11,Clear.,2,310,85,1016
206
+ 20230221,00:00,06:00,11,8,Passing clouds.,4,310,89,1013
207
+ 20230221,06:00,12:00,16,9,Broken clouds.,12,140,80,1012
208
+ 20230221,12:00,18:00,16,14,Mostly cloudy.,22,210,78,1010
209
+ 20230221,18:00,00:00,13,12,Overcast.,30,260,78,1008
210
+ 20230222,00:00,06:00,11,11,Passing clouds.,47,280,57,1008
211
+ 20230222,06:00,12:00,13,11,Scattered clouds.,38,290,51,1012
212
+ 20230222,12:00,18:00,13,11,Broken clouds.,26,260,52,1014
213
+ 20230222,18:00,00:00,11,11,Partly cloudy.,22,250,57,1015
214
+ 20230223,00:00,06:00,11,9,Partly cloudy.,20,220,71,1016
215
+ 20230223,06:00,12:00,13,10,Broken clouds.,18,220,71,1017
216
+ 20230223,12:00,18:00,13,12,Broken clouds.,18,240,65,1017
217
+ 20230223,18:00,00:00,12,12,Partly cloudy.,19,210,65,1018
218
+ 20230224,00:00,06:00,12,10,Passing clouds.,16,180,77,1018
219
+ 20230224,06:00,12:00,14,11,Broken clouds.,27,110,70,1018
220
+ 20230224,12:00,18:00,14,14,Partly sunny.,37,150,72,1016
221
+ 20230224,18:00,00:00,14,13,Passing clouds.,37,150,75,1015
222
+ 20230225,00:00,06:00,14,10,Overcast.,36,140,86,1012
223
+ 20230225,06:00,12:00,10,9,Rain. Fog.,13,260,90,1015
224
+ 20230225,12:00,18:00,12,11,Broken clouds.,23,220,74,1014
225
+ 20230225,18:00,00:00,11,9,Partly cloudy.,21,230,70,1015
226
+ 20230226,00:00,06:00,10,9,Passing clouds.,22,300,71,1017
227
+ 20230226,06:00,12:00,12,9,Partly sunny.,14,300,65,1021
228
+ 20230226,12:00,18:00,13,12,Broken clouds.,8,270,57,1022
229
+ 20230226,18:00,00:00,11,8,Passing clouds.,2,270,70,1022
230
+ 20230227,00:00,06:00,8,7,Passing clouds.,3,90,78,1021
231
+ 20230227,06:00,12:00,13,7,Scattered clouds.,7,190,65,1022
232
+ 20230227,12:00,18:00,14,13,Scattered clouds.,12,200,64,1020
233
+ 20230227,18:00,00:00,13,12,Passing clouds.,12,210,80,1020
234
+ 20230228,00:00,06:00,12,11,Passing clouds.,8,270,78,1019
235
+ 20230228,06:00,12:00,14,12,Broken clouds.,17,280,73,1019
236
+ 20230228,12:00,18:00,14,12,Broken clouds.,15,290,66,1017
237
+ 20230228,18:00,00:00,13,12,Partly cloudy.,17,250,71,1016
238
+ 20230301,00:00,06:00,13,12,Partly cloudy.,27,230,80,1012
239
+ 20230301,06:00,12:00,13,10,Light rain. Mostly cloudy.,32,240,80,1010
240
+ 20230301,12:00,18:00,12,11,Broken clouds.,43,300,54,1009
241
+ 20230301,18:00,00:00,11,10,Passing clouds.,31,300,54,1013
242
+ 20230302,00:00,06:00,11,5,Clear.,12,90,62,1016
243
+ 20230302,06:00,12:00,13,6,Passing clouds.,10,80,58,1019
244
+ 20230302,12:00,18:00,14,12,Passing clouds.,12,210,61,1018
245
+ 20230302,18:00,00:00,12,9,Clear.,5,80,75,1019
246
+ 20230303,00:00,06:00,9,7,Clear.,2,90,82,1017
247
+ 20230303,06:00,12:00,14,7,Scattered clouds.,6,160,72,1017
248
+ 20230303,12:00,18:00,14,12,Passing clouds.,11,300,67,1014
249
+ 20230303,18:00,00:00,12,9,Passing clouds.,2,310,78,1014
250
+ 20230304,00:00,06:00,9,7,Clear.,3,110,84,1014
251
+ 20230304,06:00,12:00,13,7,More clouds than sun.,4,80,79,1017
252
+ 20230304,12:00,18:00,14,12,Scattered clouds.,13,280,67,1016
253
+ 20230304,18:00,00:00,12,12,Partly cloudy.,7,290,68,1017
254
+ 20230305,00:00,06:00,12,11,Overcast.,8,290,62,1018
255
+ 20230305,06:00,12:00,14,12,Broken clouds.,12,310,60,1020
256
+ 20230305,12:00,18:00,14,13,Partly sunny.,19,300,60,1019
257
+ 20230305,18:00,00:00,13,11,Passing clouds.,4,320,75,1020
258
+ 20230306,00:00,06:00,11,9,Passing clouds.,3,90,78,1020
259
+ 20230306,06:00,12:00,16,9,Scattered clouds.,8,100,69,1022
260
+ 20230306,12:00,18:00,16,13,Partly sunny.,18,290,61,1020
261
+ 20230306,18:00,00:00,13,13,Passing clouds.,15,320,70,1021
262
+ 20230307,00:00,06:00,12,11,Partly cloudy.,11,0,72,1020
263
+ 20230307,06:00,12:00,15,11,Broken clouds.,12,290,65,1021
264
+ 20230307,12:00,18:00,14,12,Passing clouds.,22,300,63,1019
265
+ 20230307,18:00,00:00,12,11,Passing clouds.,6,310,70,1020
266
+ 20230308,00:00,06:00,9,8,Passing clouds.,2,100,82,1020
267
+ 20230308,06:00,12:00,14,8,Broken clouds.,10,100,69,1022
268
+ 20230308,12:00,18:00,14,12,Partly sunny.,18,310,61,1020
269
+ 20230308,18:00,00:00,12,11,Passing clouds.,11,0,75,1020
270
+ 20230309,00:00,06:00,11,9,Passing clouds.,5,10,80,1019
271
+ 20230309,06:00,12:00,16,9,Scattered clouds.,11,290,70,1020
272
+ 20230309,12:00,18:00,16,14,Scattered clouds.,16,320,65,1018
273
+ 20230309,18:00,00:00,14,11,Passing clouds.,9,320,79,1020
274
+ 20230310,00:00,06:00,12,11,Passing clouds.,2,50,84,1019
275
+ 20230310,06:00,12:00,14,12,Mostly cloudy.,7,190,78,1019
276
+ 20230310,12:00,18:00,15,13,Mostly cloudy.,11,150,86,1017
277
+ 20230310,18:00,00:00,14,13,Light rain. Fog.,11,150,96,1018
278
+ 20230311,00:00,06:00,14,14,Light rain. Fog.,20,170,96,1017
279
+ 20230311,06:00,12:00,15,14,Fog.,15,180,99,1019
280
+ 20230311,12:00,18:00,15,14,Fog.,9,170,97,1018
281
+ 20230311,18:00,00:00,14,14,Fog.,4,320,100,1020
282
+ 20230312,00:00,06:00,14,14,Fog.,7,310,97,1019
283
+ 20230312,06:00,12:00,17,14,Fog.,8,10,92,1020
284
+ 20230312,12:00,18:00,17,14,Scattered clouds.,17,290,84,1020
285
+ 20230312,18:00,00:00,14,13,Fog.,15,330,92,1020
286
+ 20230313,00:00,06:00,13,13,Low clouds.,8,320,92,1020
287
+ 20230313,06:00,12:00,16,12,Broken clouds.,10,320,89,1021
288
+ 20230313,12:00,18:00,17,14,Partly sunny.,14,290,78,1019
289
+ 20230313,18:00,00:00,14,13,Passing clouds.,13,310,90,1019
290
+ 20230314,00:00,06:00,13,12,Partly cloudy.,4,0,91,1017
291
+ 20230314,06:00,12:00,17,13,Fog.,7,130,86,1018
292
+ 20230314,12:00,18:00,17,15,Broken clouds.,9,270,83,1017
293
+ 20230314,18:00,00:00,15,14,Light rain. Mostly cloudy.,12,150,89,1017
294
+ 20230315,00:00,06:00,14,14,Rain. Fog.,27,160,97,1015
295
+ 20230315,06:00,12:00,14,14,Light rain. Low clouds.,35,180,89,1015
296
+ 20230315,12:00,18:00,15,13,Fog.,17,190,88,1015
297
+ 20230315,18:00,00:00,13,12,Fog.,9,270,98,1016
298
+ 20230316,00:00,06:00,12,12,Passing clouds.,6,160,83,1016
299
+ 20230316,06:00,12:00,13,11,Broken clouds.,7,0,78,1018
300
+ 20230316,12:00,18:00,14,13,Scattered clouds.,13,210,68,1018
301
+ 20230316,18:00,00:00,13,10,Passing clouds.,4,220,78,1018
302
+ 20230317,00:00,06:00,12,11,Passing clouds.,6,90,82,1017
303
+ 20230317,06:00,12:00,14,11,Passing clouds.,10,350,77,1017
304
+ 20230317,12:00,18:00,16,14,Scattered clouds.,19,320,71,1015
305
+ 20230317,18:00,00:00,14,13,Passing clouds.,12,320,86,1016
306
+ 20230318,00:00,06:00,13,11,Fog.,3,20,95,1016
307
+ 20230318,06:00,12:00,22,11,Fog.,4,0,86,1017
308
+ 20230318,12:00,18:00,23,18,Scattered clouds.,18,280,41,1015
309
+ 20230318,18:00,00:00,17,14,Clear.,4,280,77,1016
310
+ 20230319,00:00,06:00,16,14,Clear.,4,350,80,1015
311
+ 20230319,06:00,12:00,16,14,Broken clouds.,8,190,88,1016
312
+ 20230319,12:00,18:00,16,15,Mostly cloudy.,10,210,87,1015
313
+ 20230319,18:00,00:00,15,13,Light rain. Fog.,22,160,99,1014
314
+ 20230320,00:00,06:00,14,13,Mostly cloudy.,21,180,95,1014
315
+ 20230320,06:00,12:00,16,13,Partly sunny.,14,230,91,1015
316
+ 20230320,12:00,18:00,16,14,Broken clouds.,14,280,82,1014
317
+ 20230320,18:00,00:00,14,13,Passing clouds.,8,220,81,1013
318
+ 20230321,00:00,06:00,14,12,Light rain. Fog.,21,170,92,1010
319
+ 20230321,06:00,12:00,14,13,Rain. Fog.,39,160,93,1008
320
+ 20230321,12:00,18:00,16,14,Broken clouds.,25,160,82,1010
321
+ 20230321,18:00,00:00,16,13,Partly cloudy.,22,200,96,1010
322
+ 20230322,00:00,06:00,14,13,Passing clouds.,26,250,93,1014
323
+ 20230322,06:00,12:00,15,12,Broken clouds.,15,240,64,1018
324
+ 20230322,12:00,18:00,17,14,Broken clouds.,19,220,62,1019
325
+ 20230322,18:00,00:00,14,12,Partly cloudy.,17,300,79,1020
326
+ 20230323,00:00,06:00,13,12,Passing clouds.,10,290,79,1021
327
+ 20230323,06:00,12:00,14,12,Broken clouds.,11,310,84,1024
328
+ 20230323,12:00,18:00,14,14,Broken clouds.,24,290,77,1024
329
+ 20230323,18:00,00:00,14,13,Passing clouds.,15,300,74,1024
330
+ 20230324,00:00,06:00,14,12,Passing clouds.,11,260,70,1024
331
+ 20230324,06:00,12:00,15,11,Passing clouds.,9,90,70,1025
332
+ 20230324,12:00,18:00,17,16,Passing clouds.,17,270,55,1023
333
+ 20230324,18:00,00:00,15,13,Passing clouds.,7,300,63,1022
334
+ 20230325,00:00,06:00,,,Not Available,,,,
335
+ 20230325,06:00,12:00,16,8,Scattered clouds.,8,110,73,1020
336
+ 20230325,12:00,18:00,17,16,Passing clouds.,18,220,55,1018
337
+ 20230325,18:00,00:00,16,12,Clear.,6,300,62,1018
338
+ 20230326,00:00,06:00,12,11,Clear.,3,0,69,1019
339
+ 20230326,06:00,12:00,16,10,Passing clouds.,1,0,61,1020
340
+ 20230326,12:00,18:00,17,16,Scattered clouds.,14,320,44,1019
341
+ 20230326,18:00,00:00,16,14,Passing clouds.,12,300,62,1020
342
+ 20230327,00:00,06:00,9,9,Passing clouds.,7,50,74,1019
343
+ 20230327,06:00,12:00,17,9,Scattered clouds.,4,70,64,1020
344
+ 20230327,12:00,18:00,19,18,Passing clouds.,23,320,40,1019
345
+ 20230327,18:00,00:00,18,13,Passing clouds.,9,10,44,1019
346
+ 20230328,00:00,06:00,13,11,Passing clouds.,0,0,60,1018
347
+ 20230328,06:00,12:00,17,11,Passing clouds.,8,200,58,1018
348
+ 20230328,12:00,18:00,18,16,Scattered clouds.,16,300,64,1018
349
+ 20230328,18:00,00:00,14,12,Passing clouds.,10,310,78,1017
350
+ 20230329,00:00,06:00,12,10,Passing clouds.,5,90,89,1016
351
+ 20230329,06:00,12:00,14,11,Broken clouds.,22,160,88,1015
352
+ 20230329,12:00,18:00,13,12,Light rain. Mostly cloudy.,17,300,88,1015
353
+ 20230329,18:00,00:00,13,12,Partly cloudy.,10,240,75,1013
354
+ 20230330,00:00,06:00,12,11,Partly cloudy.,18,240,79,1013
355
+ 20230330,06:00,12:00,14,11,Scattered clouds.,16,250,72,1015
356
+ 20230330,12:00,18:00,15,14,Broken clouds.,18,230,71,1016
357
+ 20230330,18:00,00:00,13,12,Passing clouds.,8,280,80,1018
358
+ 20230331,00:00,06:00,12,9,Clear.,2,20,92,1021
359
+ 20230331,06:00,12:00,16,9,Partly sunny.,8,50,72,1022
360
+ 20230331,12:00,18:00,16,16,Partly sunny.,22,300,62,1022
361
+ 20230331,18:00,00:00,14,13,Passing clouds.,16,350,83,1020
362
+ 20230401,00:00,06:00,13,9,Clear.,6,30,93,1020
363
+ 20230401,06:00,12:00,17,9,Sunny.,6,90,78,1020
364
+ 20230401,12:00,18:00,17,16,Passing clouds.,19,290,72,1020
365
+ 20230401,18:00,00:00,14,12,Passing clouds.,8,320,88,1020
366
+ 20230402,00:00,06:00,12,10,Overcast.,1,90,92,1019
367
+ 20230402,06:00,12:00,15,12,Passing clouds.,7,70,84,1019
368
+ 20230402,12:00,18:00,16,14,Scattered clouds.,14,210,78,1018
369
+ 20230402,18:00,00:00,14,14,Passing clouds.,7,280,80,1017
370
+ 20230403,00:00,06:00,13,12,Mostly cloudy.,11,270,84,1015
371
+ 20230403,06:00,12:00,15,12,Partly sunny.,20,240,67,1015
372
+ 20230403,12:00,18:00,15,14,Partly sunny.,27,270,58,1015
373
+ 20230403,18:00,00:00,13,13,Passing clouds.,32,300,58,1016
374
+ 20230404,00:00,06:00,13,11,Clear.,36,330,37,1017
375
+ 20230404,06:00,12:00,14,10,Passing clouds.,18,20,32,1020
376
+ 20230404,12:00,18:00,15,14,Passing clouds.,22,290,42,1020
377
+ 20230404,18:00,00:00,13,12,Passing clouds.,13,320,60,1020
378
+ 20230405,00:00,06:00,10,8,Passing clouds.,4,110,72,1020
379
+ 20230405,06:00,12:00,16,7,Passing clouds.,10,310,63,1020
380
+ 20230405,12:00,18:00,17,16,Sunny.,22,320,50,1019
381
+ 20230405,18:00,00:00,14,13,Passing clouds.,12,340,73,1018
382
+ 20230406,00:00,06:00,11,8,Passing clouds.,2,340,83,1018
383
+ 20230406,06:00,12:00,20,7,Passing clouds.,3,220,58,1018
384
+ 20230406,12:00,18:00,20,17,Passing clouds.,21,300,41,1016
385
+ 20230406,18:00,00:00,17,13,Passing clouds.,10,340,63,1017
386
+ 20230407,00:00,06:00,12,10,Passing clouds.,1,120,77,1017
387
+ 20230407,06:00,12:00,17,11,Passing clouds.,7,160,68,1018
388
+ 20230407,12:00,18:00,17,16,Scattered clouds.,17,280,68,1017
389
+ 20230407,18:00,00:00,15,12,Passing clouds.,10,310,88,1017
390
+ 20230408,00:00,06:00,13,11,Passing clouds.,5,350,93,1018
391
+ 20230408,06:00,12:00,17,11,Passing clouds.,7,310,83,1018
392
+ 20230408,12:00,18:00,18,15,Scattered clouds.,24,310,74,1018
393
+ 20230408,18:00,00:00,14,14,Passing clouds.,19,320,90,1019
394
+ 20230409,00:00,06:00,13,12,Low clouds.,10,330,95,1019
395
+ 20230409,06:00,12:00,15,12,Fog.,13,320,94,1020
396
+ 20230409,12:00,18:00,16,14,Passing clouds.,22,310,82,1018
397
+ 20230409,18:00,00:00,13,12,Low clouds.,12,320,96,1018
398
+ 20230410,00:00,06:00,12,11,Fog.,3,210,100,1018
399
+ 20230410,06:00,12:00,16,11,Fog.,3,0,95,1018
400
+ 20230410,12:00,18:00,16,14,Scattered clouds.,12,270,84,1017
401
+ 20230410,18:00,00:00,13,13,Fog.,6,190,96,1017
402
+ 20230411,00:00,06:00,12,12,Fog.,9,270,100,1016
403
+ 20230411,06:00,12:00,16,12,Fog.,10,230,93,1017
404
+ 20230411,12:00,18:00,16,14,Partly sunny.,15,270,82,1015
405
+ 20230411,18:00,00:00,13,12,Low clouds.,8,210,93,1015
406
+ 20230412,00:00,06:00,13,12,Low clouds.,11,160,96,1013
407
+ 20230412,06:00,12:00,14,12,Fog.,15,160,95,1013
408
+ 20230412,12:00,18:00,14,13,Fog.,16,200,90,1011
409
+ 20230412,18:00,00:00,13,12,Light rain. Fog.,20,180,99,1010
410
+ 20230413,00:00,06:00,13,12,Passing clouds.,15,260,96,1010
411
+ 20230413,06:00,12:00,13,12,Partly sunny.,16,220,77,1011
412
+ 20230413,12:00,18:00,13,12,More clouds than sun.,16,200,74,1011
413
+ 20230413,18:00,00:00,12,12,Mostly cloudy.,9,190,82,1012
414
+ 20230414,00:00,06:00,13,12,Passing clouds.,15,150,74,1012
415
+ 20230414,06:00,12:00,16,12,Scattered clouds.,14,150,66,1014
416
+ 20230414,12:00,18:00,16,15,Passing clouds.,15,290,68,1015
417
+ 20230414,18:00,00:00,14,13,Passing clouds.,10,290,80,1016
418
+ 20230415,00:00,06:00,13,11,Clear.,6,130,91,1017
419
+ 20230415,06:00,12:00,17,11,Fog.,10,310,81,1019
420
+ 20230415,12:00,18:00,17,16,Passing clouds.,21,290,74,1019
421
+ 20230415,18:00,00:00,14,14,Passing clouds.,13,310,85,1020
422
+ 20230416,00:00,06:00,14,14,Overcast.,9,310,84,1019
423
+ 20230416,06:00,12:00,14,14,Overcast.,12,0,86,1020
424
+ 20230416,12:00,18:00,14,14,Overcast.,17,300,86,1018
425
+ 20230416,18:00,00:00,14,13,Overcast.,9,270,87,1017
426
+ 20230417,00:00,06:00,13,13,Low clouds.,3,330,94,1016
427
+ 20230417,06:00,12:00,14,13,Fog.,7,210,94,1016
428
+ 20230417,12:00,18:00,16,14,Partly sunny.,12,280,78,1014
429
+ 20230417,18:00,00:00,14,14,Overcast.,9,250,78,1014
430
+ 20230418,00:00,06:00,14,12,Drizzle. Fog.,6,200,92,1015
431
+ 20230418,06:00,12:00,16,13,Broken clouds.,13,190,83,1016
432
+ 20230418,12:00,18:00,17,16,Broken clouds.,18,290,69,1015
433
+ 20230418,18:00,00:00,15,14,Partly cloudy.,15,290,80,1016
434
+ 20230419,00:00,06:00,13,11,Passing clouds.,8,260,79,1016
435
+ 20230419,06:00,12:00,17,12,Scattered clouds.,11,150,69,1018
436
+ 20230419,12:00,18:00,18,16,Scattered clouds.,20,280,62,1017
437
+ 20230419,18:00,00:00,16,14,Passing clouds.,12,320,73,1018
438
+ 20230420,00:00,06:00,13,11,Clear.,3,300,80,1018
439
+ 20230420,06:00,12:00,19,11,Sunny.,8,280,69,1019
440
+ 20230420,12:00,18:00,22,19,Scattered clouds.,28,320,48,1019
441
+ 20230420,18:00,00:00,18,16,Passing clouds.,8,330,55,1019
442
+ 20230421,00:00,06:00,14,13,Passing clouds.,5,10,75,1019
443
+ 20230421,06:00,12:00,27,14,Sunny.,6,0,43,1019
444
+ 20230421,12:00,18:00,26,23,Sunny.,22,320,30,1016
445
+ 20230421,18:00,00:00,22,14,Passing clouds.,10,320,61,1015
446
+ 20230422,00:00,06:00,14,13,Fog.,2,130,99,1013
447
+ 20230422,06:00,12:00,22,14,Passing clouds.,5,190,68,1012
448
+ 20230422,12:00,18:00,24,19,Scattered clouds.,11,250,44,1010
449
+ 20230422,18:00,00:00,19,14,Fog.,7,150,95,1010
450
+ 20230423,00:00,06:00,15,14,Low clouds.,15,190,96,1009
451
+ 20230423,06:00,12:00,17,14,Overcast.,16,190,87,1010
452
+ 20230423,12:00,18:00,18,16,Scattered clouds.,18,210,77,1010
453
+ 20230423,18:00,00:00,16,15,Overcast.,7,200,83,1011
454
+ 20230424,00:00,06:00,14,14,Overcast.,13,170,85,1011
455
+ 20230424,06:00,12:00,16,14,Overcast.,10,180,78,1013
456
+ 20230424,12:00,18:00,18,16,Partly sunny.,14,200,74,1012
457
+ 20230424,18:00,00:00,16,14,Overcast.,9,170,85,1012
458
+ 20230425,00:00,06:00,14,14,Overcast.,8,150,84,1012
459
+ 20230425,06:00,12:00,17,14,Overcast.,13,170,79,1013
460
+ 20230425,12:00,18:00,18,16,Scattered clouds.,16,210,78,1012
461
+ 20230425,18:00,00:00,16,16,Overcast.,8,220,80,1013
462
+ 20230426,00:00,06:00,16,15,Overcast.,7,230,87,1014
463
+ 20230426,06:00,12:00,19,16,Overcast.,14,310,81,1015
464
+ 20230426,12:00,18:00,19,17,Passing clouds.,23,320,76,1013
465
+ 20230426,18:00,00:00,16,16,Low clouds.,11,310,90,1014
466
+ 20230427,00:00,06:00,15,14,Fog.,5,300,99,1013
467
+ 20230427,06:00,12:00,18,14,Fog.,13,300,90,1014
468
+ 20230427,12:00,18:00,18,16,Scattered clouds.,20,300,75,1013
469
+ 20230427,18:00,00:00,15,14,Passing clouds.,12,340,89,1014
470
+ 20230428,00:00,06:00,14,14,Low clouds.,9,320,92,1013
471
+ 20230428,06:00,12:00,17,14,Fog.,10,310,87,1015
472
+ 20230428,12:00,18:00,18,16,Scattered clouds.,19,290,74,1015
473
+ 20230428,18:00,00:00,15,14,Passing clouds.,10,280,86,1016
474
+ 20230429,00:00,06:00,14,14,Overcast.,8,10,89,1016
475
+ 20230429,06:00,12:00,17,14,Low clouds.,11,330,88,1016
476
+ 20230429,12:00,18:00,17,15,Partly sunny.,15,300,82,1016
477
+ 20230429,18:00,00:00,15,14,Overcast.,7,280,87,1015
478
+ 20230430,00:00,06:00,14,14,Low clouds.,8,310,92,1014
479
+ 20230430,06:00,12:00,16,14,Overcast.,9,270,91,1014
480
+ 20230430,12:00,18:00,16,14,Overcast.,10,270,82,1013
481
+ 20230430,18:00,00:00,14,14,Overcast.,12,200,85,1012
482
+ 20230501,00:00,06:00,14,13,Overcast.,15,150,88,1011
483
+ 20230501,06:00,12:00,17,13,Broken clouds.,19,160,84,1012
484
+ 20230501,12:00,18:00,17,15,Broken clouds.,18,240,68,1012
485
+ 20230501,18:00,00:00,15,14,Partly cloudy.,13,230,72,1012
486
+ 20230502,00:00,06:00,14,14,Partly cloudy.,11,240,72,1013
487
+ 20230502,06:00,12:00,17,14,Broken clouds.,13,260,60,1014
488
+ 20230502,12:00,18:00,17,16,Scattered clouds.,19,280,59,1013
489
+ 20230502,18:00,00:00,15,13,Passing clouds.,9,290,70,1014
490
+ 20230503,00:00,06:00,13,12,Passing clouds.,5,320,78,1012
491
+ 20230503,06:00,12:00,16,14,Broken clouds.,8,190,71,1013
492
+ 20230503,12:00,18:00,17,16,Scattered clouds.,17,240,59,1013
493
+ 20230503,18:00,00:00,15,14,Partly cloudy.,12,180,70,1013
494
+ 20230504,00:00,06:00,14,14,Partly cloudy.,20,200,77,1012
495
+ 20230504,06:00,12:00,17,13,Partly sunny.,22,170,84,1014
496
+ 20230504,12:00,18:00,17,16,Broken clouds.,15,210,66,1015
497
+ 20230504,18:00,00:00,16,14,Partly cloudy.,7,220,75,1016
498
+ 20230505,00:00,06:00,14,14,Partly cloudy.,8,220,80,1016
499
+ 20230505,06:00,12:00,17,14,Broken clouds.,14,120,80,1018
500
+ 20230505,12:00,18:00,19,17,Partly sunny.,17,290,61,1018
501
+ 20230505,18:00,00:00,16,15,Passing clouds.,12,310,73,1018
502
+ 20230506,00:00,06:00,15,12,Passing clouds.,4,90,84,1018
503
+ 20230506,06:00,12:00,18,14,Scattered clouds.,9,280,71,1019
504
+ 20230506,12:00,18:00,18,17,Scattered clouds.,22,300,63,1019
505
+ 20230506,18:00,00:00,17,15,Passing clouds.,16,340,71,1019
506
+ 20230507,00:00,06:00,15,12,Passing clouds.,5,30,84,1018
507
+ 20230507,06:00,12:00,19,13,Passing clouds.,7,280,69,1019
508
+ 20230507,12:00,18:00,19,18,Passing clouds.,18,300,61,1018
509
+ 20230507,18:00,00:00,17,15,Passing clouds.,13,320,78,1018
510
+ 20230508,00:00,06:00,16,14,Overcast.,6,350,81,1017
511
+ 20230508,06:00,12:00,18,16,Partly sunny.,10,0,72,1018
512
+ 20230508,12:00,18:00,19,18,Passing clouds.,20,260,70,1017
513
+ 20230508,18:00,00:00,16,15,Passing clouds.,11,320,83,1016
514
+ 20230509,00:00,06:00,16,15,Passing clouds.,3,230,77,1016
515
+ 20230509,06:00,12:00,18,16,Partly sunny.,10,200,69,1017
516
+ 20230509,12:00,18:00,18,17,Passing clouds.,20,250,65,1016
517
+ 20230509,18:00,00:00,16,15,Passing clouds.,19,280,74,1016
518
+ 20230510,00:00,06:00,15,14,Passing clouds.,19,290,72,1016
519
+ 20230510,06:00,12:00,17,14,Broken clouds.,15,290,66,1018
520
+ 20230510,12:00,18:00,18,16,Scattered clouds.,16,240,65,1017
521
+ 20230510,18:00,00:00,16,14,Passing clouds.,6,250,77,1017
522
+ 20230511,00:00,06:00,16,15,Passing clouds.,10,260,79,1016
523
+ 20230511,06:00,12:00,18,15,Broken clouds.,12,280,68,1017
524
+ 20230511,12:00,18:00,19,17,Scattered clouds.,19,300,64,1015
525
+ 20230511,18:00,00:00,17,16,Passing clouds.,10,310,76,1015
526
+ 20230512,00:00,06:00,16,15,Overcast.,3,230,78,1015
527
+ 20230512,06:00,12:00,18,16,Overcast.,10,280,75,1015
528
+ 20230512,12:00,18:00,18,17,Partly sunny.,19,290,74,1014
529
+ 20230512,18:00,00:00,17,16,Overcast.,10,270,81,1013
530
+ 20230513,00:00,06:00,16,16,Overcast.,8,300,84,1012
531
+ 20230513,06:00,12:00,17,15,Overcast.,5,280,89,1012
532
+ 20230513,12:00,18:00,18,16,Partly sunny.,13,260,85,1011
533
+ 20230513,18:00,00:00,16,15,Low clouds.,7,180,91,1012
534
+ 20230514,00:00,06:00,15,14,Fog.,10,190,97,1012
535
+ 20230514,06:00,12:00,17,14,Fog.,8,210,94,1013
536
+ 20230514,12:00,18:00,17,16,Overcast.,13,210,84,1014
537
+ 20230514,18:00,00:00,16,16,Overcast.,7,180,89,1016
538
+ 20230515,00:00,06:00,16,15,Low clouds.,1,190,91,1016
539
+ 20230515,06:00,12:00,18,15,Overcast.,5,210,87,1018
540
+ 20230515,12:00,18:00,18,17,Partly sunny.,14,240,78,1018
541
+ 20230515,18:00,00:00,17,16,Overcast.,10,290,83,1017
542
+ 20230516,00:00,06:00,16,16,Low clouds.,9,310,92,1016
543
+ 20230516,06:00,12:00,18,16,Overcast.,11,320,88,1017
544
+ 20230516,12:00,18:00,20,17,Scattered clouds.,20,300,73,1015
545
+ 20230516,18:00,00:00,17,16,Passing clouds.,12,310,86,1015
546
+ 20230517,00:00,06:00,16,15,Low clouds.,11,320,92,1014
547
+ 20230517,06:00,12:00,16,16,Fog.,9,210,94,1014
548
+ 20230517,12:00,18:00,17,16,Overcast.,16,290,82,1012
549
+ 20230517,18:00,00:00,16,15,Overcast.,9,290,83,1011
550
+ 20230518,00:00,06:00,15,14,Passing clouds.,5,310,92,1011
551
+ 20230518,06:00,12:00,17,15,Fog.,10,190,91,1013
552
+ 20230518,12:00,18:00,18,17,Broken clouds.,13,210,77,1014
553
+ 20230518,18:00,00:00,17,16,Passing clouds.,6,200,84,1014
554
+ 20230519,00:00,06:00,16,16,Overcast.,6,170,88,1015
555
+ 20230519,06:00,12:00,17,16,Overcast.,9,170,86,1018
556
+ 20230519,12:00,18:00,18,17,Overcast.,13,210,82,1017
557
+ 20230519,18:00,00:00,17,17,Overcast.,8,220,82,1018
558
+ 20230520,00:00,06:00,16,16,Overcast.,6,240,90,1018
559
+ 20230520,06:00,12:00,18,16,Overcast.,11,270,85,1018
560
+ 20230520,12:00,18:00,18,17,Overcast.,14,260,80,1018
561
+ 20230520,18:00,00:00,17,17,Overcast.,10,210,83,1018
562
+ 20230521,00:00,06:00,17,16,Overcast.,6,350,88,1017
563
+ 20230521,06:00,12:00,19,16,Overcast.,9,330,88,1016
564
+ 20230521,12:00,18:00,19,17,Partly sunny.,13,260,80,1015
565
+ 20230521,18:00,00:00,16,16,Overcast.,9,210,90,1015
566
+ 20230522,00:00,06:00,16,16,Overcast.,4,210,90,1014
567
+ 20230522,06:00,12:00,17,16,Low clouds.,7,240,92,1014
568
+ 20230522,12:00,18:00,17,17,Overcast.,10,250,85,1014
569
+ 20230522,18:00,00:00,17,16,Overcast.,11,180,89,1014
570
+ 20230523,00:00,06:00,16,15,Mostly cloudy.,10,190,92,1014
571
+ 20230523,06:00,12:00,17,15,Mostly cloudy.,8,210,90,1014
572
+ 20230523,12:00,18:00,17,16,More clouds than sun.,13,210,82,1014
573
+ 20230523,18:00,00:00,16,16,Overcast.,9,230,81,1014
574
+ 20230524,00:00,06:00,16,14,Mostly cloudy.,8,250,85,1014
575
+ 20230524,06:00,12:00,16,15,Overcast.,9,220,79,1015
576
+ 20230524,12:00,18:00,18,17,Partly sunny.,13,210,68,1014
577
+ 20230524,18:00,00:00,17,16,Overcast.,10,240,72,1013
578
+ 20230525,00:00,06:00,16,16,Passing clouds.,7,230,70,1012
579
+ 20230525,06:00,12:00,18,16,Partly sunny.,9,280,66,1013
580
+ 20230525,12:00,18:00,19,17,Scattered clouds.,15,240,62,1012
581
+ 20230525,18:00,00:00,17,16,Overcast.,12,260,74,1013
582
+ 20230526,00:00,06:00,16,16,Passing clouds.,8,280,70,1014
583
+ 20230526,06:00,12:00,18,16,Partly sunny.,10,260,65,1014
584
+ 20230526,12:00,18:00,19,18,Scattered clouds.,19,280,61,1014
585
+ 20230526,18:00,00:00,17,16,Passing clouds.,16,290,78,1015
586
+ 20230527,00:00,06:00,17,16,Overcast.,17,300,81,1014
587
+ 20230527,06:00,12:00,19,16,Light rain. Mostly cloudy.,17,310,79,1015
588
+ 20230527,12:00,18:00,20,18,Partly sunny.,22,300,67,1014
589
+ 20230527,18:00,00:00,17,16,Overcast.,19,310,79,1014
590
+ 20230528,00:00,06:00,16,16,Overcast.,8,270,80,1014
591
+ 20230528,06:00,12:00,18,16,Overcast.,8,210,78,1014
592
+ 20230528,12:00,18:00,19,17,Overcast.,15,270,76,1014
593
+ 20230528,18:00,00:00,17,16,Overcast.,8,270,85,1014
594
+ 20230529,00:00,06:00,16,16,Mostly cloudy.,5,230,82,1014
595
+ 20230529,06:00,12:00,17,15,Mostly cloudy.,10,260,86,1015
596
+ 20230529,12:00,18:00,17,17,Overcast.,11,0,74,1016
597
+ 20230529,18:00,00:00,17,16,Overcast.,4,260,81,1015
598
+ 20230530,00:00,06:00,17,17,Overcast.,3,230,75,1015
599
+ 20230530,06:00,12:00,18,16,Partly sunny.,12,260,76,1015
600
+ 20230530,12:00,18:00,18,17,Mostly cloudy.,19,270,68,1015
601
+ 20230530,18:00,00:00,17,16,Partly cloudy.,12,280,74,1014
602
+ 20230531,00:00,06:00,16,14,Partly cloudy.,13,320,76,1013
603
+ 20230531,06:00,12:00,18,16,Broken clouds.,9,320,67,1013
604
+ 20230531,12:00,18:00,18,17,More clouds than sun.,15,270,69,1013
605
+ 20230531,18:00,00:00,17,16,Passing clouds.,13,320,80,1013
606
+ 20230601,00:00,06:00,17,16,Partly cloudy.,9,280,86,1012
607
+ 20230601,06:00,12:00,18,16,More clouds than sun.,11,280,77,1013
608
+ 20230601,12:00,18:00,18,17,Mostly cloudy.,11,270,73,1014
609
+ 20230601,18:00,00:00,17,17,Partly cloudy.,10,300,82,1014
610
+ 20230602,00:00,06:00,17,16,Passing clouds.,10,300,82,1014
611
+ 20230602,06:00,12:00,19,17,Partly sunny.,16,290,70,1015
612
+ 20230602,12:00,18:00,21,19,Scattered clouds.,22,290,64,1015
613
+ 20230602,18:00,00:00,18,17,Passing clouds.,15,310,81,1015
614
+ 20230603,00:00,06:00,17,17,Overcast.,7,290,84,1013
615
+ 20230603,06:00,12:00,18,16,Fog.,12,300,92,1014
616
+ 20230603,12:00,18:00,19,18,Low clouds.,16,260,74,1014
617
+ 20230603,18:00,00:00,18,17,Overcast.,7,290,78,1013
618
+ 20230604,00:00,06:00,17,17,Overcast.,7,280,80,1012
619
+ 20230604,06:00,12:00,18,17,Overcast.,11,260,78,1012
620
+ 20230604,12:00,18:00,19,18,Passing clouds.,16,260,66,1012
621
+ 20230604,18:00,00:00,17,17,Partly sunny.,7,280,76,1012
622
+ 20230605,00:00,06:00,17,16,Mostly cloudy.,6,150,83,1011
623
+ 20230605,06:00,12:00,18,17,Partly sunny.,13,230,72,1012
624
+ 20230605,12:00,18:00,18,17,Broken clouds.,14,220,64,1013
625
+ 20230605,18:00,00:00,17,16,Passing clouds.,11,200,68,1013
626
+ 20230606,00:00,06:00,16,16,Passing clouds.,4,180,68,1012
627
+ 20230606,06:00,12:00,17,16,Overcast.,7,180,61,1013
628
+ 20230606,12:00,18:00,20,18,Scattered clouds.,17,180,62,1013
629
+ 20230606,18:00,00:00,18,16,Partly cloudy.,4,260,77,1013
630
+ 20230607,00:00,06:00,17,16,Partly cloudy.,1,210,80,1014
631
+ 20230607,06:00,12:00,18,17,Broken clouds.,9,260,75,1015
632
+ 20230607,12:00,18:00,20,19,Broken clouds.,17,280,62,1015
633
+ 20230607,18:00,00:00,18,17,Passing clouds.,12,320,76,1015
634
+ 20230608,00:00,06:00,17,16,Passing clouds.,4,320,82,1015
635
+ 20230608,06:00,12:00,20,17,Broken clouds.,10,330,75,1016
636
+ 20230608,12:00,18:00,21,19,Scattered clouds.,23,300,68,1016
637
+ 20230608,18:00,00:00,19,17,Scattered clouds.,15,320,80,1017
638
+ 20230609,00:00,06:00,17,16,Passing clouds.,10,290,86,1017
639
+ 20230609,06:00,12:00,19,16,More clouds than sun.,15,310,82,1016
640
+ 20230609,12:00,18:00,21,19,Broken clouds.,23,290,66,1016
641
+ 20230609,18:00,00:00,18,18,Overcast.,17,290,80,1015
642
+ 20230610,00:00,06:00,17,17,Overcast.,14,320,86,1013
643
+ 20230610,06:00,12:00,19,17,Overcast.,11,290,82,1013
644
+ 20230610,12:00,18:00,19,17,Cloudy.,15,260,82,1013
645
+ 20230610,18:00,00:00,17,17,Overcast.,10,280,87,1013
646
+ 20230611,00:00,06:00,17,16,Mostly cloudy.,9,260,90,1012
647
+ 20230611,06:00,12:00,17,16,Mostly cloudy.,8,210,90,1013
648
+ 20230611,12:00,18:00,18,16,Mostly cloudy.,11,210,88,1014
649
+ 20230611,18:00,00:00,17,16,Passing clouds.,6,250,86,1016
650
+ 20230612,00:00,06:00,17,16,Passing clouds.,3,210,93,1016
651
+ 20230612,06:00,12:00,18,16,Broken clouds.,9,190,89,1017
652
+ 20230612,12:00,18:00,20,18,Partly sunny.,18,280,73,1017
653
+ 20230612,18:00,00:00,18,17,Partly sunny.,15,320,81,1017
654
+ 20230613,00:00,06:00,17,17,Passing clouds.,14,310,82,1017
655
+ 20230613,06:00,12:00,19,17,Drizzle. More clouds than sun.,14,300,85,1017
656
+ 20230613,12:00,18:00,19,19,More clouds than sun.,21,300,74,1016
657
+ 20230613,18:00,00:00,18,17,Passing clouds.,15,310,82,1015
658
+ 20230614,00:00,06:00,17,17,Overcast.,9,290,84,1014
659
+ 20230614,06:00,12:00,19,17,Overcast.,6,270,83,1015
660
+ 20230614,12:00,18:00,21,19,Broken clouds.,20,290,68,1013
661
+ 20230614,18:00,00:00,19,17,Passing clouds.,12,300,78,1013
662
+ 20230615,00:00,06:00,17,16,Passing clouds.,8,270,87,1013
663
+ 20230615,06:00,12:00,19,16,Broken clouds.,7,300,84,1014
664
+ 20230615,12:00,18:00,21,20,Scattered clouds.,16,270,68,1013
665
+ 20230615,18:00,00:00,19,18,Passing clouds.,10,300,80,1013
666
+ 20230616,00:00,06:00,18,17,Passing clouds.,6,270,83,1014
667
+ 20230616,06:00,12:00,21,18,Partly sunny.,12,290,76,1015
668
+ 20230616,12:00,18:00,21,21,Scattered clouds.,21,300,69,1014
669
+ 20230616,18:00,00:00,19,18,Passing clouds.,17,320,85,1015
670
+ 20230617,00:00,06:00,18,18,Overcast.,15,340,86,1015
671
+ 20230617,06:00,12:00,21,17,Low clouds.,18,320,86,1015
672
+ 20230617,12:00,18:00,21,20,Scattered clouds.,22,300,76,1014
673
+ 20230617,18:00,00:00,19,17,Partly sunny.,15,320,89,1014
674
+ 20230618,00:00,06:00,17,17,Low clouds.,10,320,92,1013
675
+ 20230618,06:00,12:00,19,17,Overcast.,6,270,84,1014
676
+ 20230618,12:00,18:00,19,18,Partly sunny.,13,300,77,1013
677
+ 20230618,18:00,00:00,18,16,Passing clouds.,5,280,85,1013
678
+ 20230619,00:00,06:00,17,16,Overcast.,3,210,85,1013
679
+ 20230619,06:00,12:00,19,17,Overcast.,9,190,82,1015
680
+ 20230619,12:00,18:00,21,19,Scattered clouds.,15,210,71,1014
681
+ 20230619,18:00,00:00,19,16,Passing clouds.,7,280,82,1015
682
+ 20230620,00:00,06:00,17,17,Passing clouds.,6,310,87,1015
683
+ 20230620,06:00,12:00,21,17,Passing clouds.,9,270,72,1016
684
+ 20230620,12:00,18:00,22,21,Passing clouds.,21,300,64,1015
685
+ 20230620,18:00,00:00,19,17,Passing clouds.,13,320,86,1015
686
+ 20230621,00:00,06:00,16,14,Passing clouds.,3,290,96,1015
687
+ 20230621,06:00,12:00,21,17,Passing clouds.,11,150,77,1015
688
+ 20230621,12:00,18:00,22,21,Passing clouds.,15,270,68,1014
689
+ 20230621,18:00,00:00,19,17,Passing clouds.,11,290,87,1014
690
+ 20230622,00:00,06:00,17,16,Passing clouds.,7,270,85,1014
691
+ 20230622,06:00,12:00,18,17,Overcast.,6,0,74,1015
692
+ 20230622,12:00,18:00,19,18,Passing clouds.,16,280,64,1015
693
+ 20230622,18:00,00:00,17,17,Passing clouds.,12,280,73,1016
694
+ 20230623,00:00,06:00,16,16,Partly cloudy.,7,270,75,1016
695
+ 20230623,06:00,12:00,21,17,Partly sunny.,15,310,59,1017
696
+ 20230623,12:00,18:00,21,19,Sunny.,24,300,59,1016
697
+ 20230623,18:00,00:00,19,17,Passing clouds.,17,340,76,1016
698
+ 20230624,00:00,06:00,17,15,Passing clouds.,2,340,91,1016
699
+ 20230624,06:00,12:00,21,17,Partly sunny.,10,320,75,1017
700
+ 20230624,12:00,18:00,21,19,Scattered clouds.,23,280,63,1016
701
+ 20230624,18:00,00:00,19,16,Passing clouds.,13,310,81,1017
702
+ 20230625,00:00,06:00,17,17,Overcast.,8,290,77,1017
703
+ 20230625,06:00,12:00,21,17,Passing clouds.,14,270,66,1018
704
+ 20230625,12:00,18:00,21,20,Sunny.,23,300,63,1016
705
+ 20230625,18:00,00:00,19,17,Passing clouds.,15,320,81,1015
706
+ 20230626,00:00,06:00,17,17,Overcast.,7,240,81,1015
707
+ 20230626,06:00,12:00,21,17,Passing clouds.,12,290,71,1015
708
+ 20230626,12:00,18:00,21,19,Passing clouds.,20,290,68,1013
709
+ 20230626,18:00,00:00,18,17,Passing clouds.,12,320,83,1012
710
+ 20230627,00:00,06:00,17,16,Passing clouds.,5,270,85,1012
711
+ 20230627,06:00,12:00,21,17,Passing clouds.,12,290,72,1012
712
+ 20230627,12:00,18:00,21,19,Passing clouds.,17,290,69,1011
713
+ 20230627,18:00,00:00,18,17,Passing clouds.,9,280,83,1012
714
+ 20230628,00:00,06:00,17,17,Passing clouds.,5,190,84,1012
715
+ 20230628,06:00,12:00,18,17,Overcast.,10,270,80,1013
716
+ 20230628,12:00,18:00,20,18,Passing clouds.,15,260,69,1012
717
+ 20230628,18:00,00:00,17,15,Passing clouds.,8,170,87,1012
718
+ 20230629,00:00,06:00,17,15,Passing clouds.,3,170,85,1013
719
+ 20230629,06:00,12:00,20,16,Passing clouds.,9,200,73,1014
720
+ 20230629,12:00,18:00,21,19,Passing clouds.,17,270,68,1012
721
+ 20230629,18:00,00:00,19,17,Passing clouds.,9,280,86,1012
722
+ 20230630,00:00,06:00,17,17,Passing clouds.,4,220,89,1012
723
+ 20230630,06:00,12:00,21,18,Overcast.,11,280,77,1013
724
+ 20230630,12:00,18:00,22,20,Passing clouds.,17,290,69,1011
725
+ 20230630,18:00,00:00,19,17,Low clouds.,8,200,88,1012
726
+ 20230701,00:00,06:00,17,17,Low clouds.,5,260,94,1012
727
+ 20230701,06:00,12:00,21,17,Scattered clouds.,12,290,86,1013
728
+ 20230701,12:00,18:00,21,19,Partly sunny.,12,210,82,1013
729
+ 20230701,18:00,00:00,18,18,Overcast.,7,280,90,1013
730
+ 20230702,00:00,06:00,18,18,Low clouds.,9,290,93,1012
731
+ 20230702,06:00,12:00,21,18,Fog.,9,270,89,1013
732
+ 20230702,12:00,18:00,22,20,Passing clouds.,18,290,76,1012
733
+ 20230702,18:00,00:00,19,18,Passing clouds.,13,320,89,1012
734
+ 20230703,00:00,06:00,18,17,Low clouds.,7,310,92,1012
735
+ 20230703,06:00,12:00,19,17,Low clouds.,11,310,92,1013
736
+ 20230703,12:00,18:00,21,20,Passing clouds.,17,280,78,1012
737
+ 20230703,18:00,00:00,18,17,Passing clouds.,16,310,91,1012
738
+ 20230704,00:00,06:00,17,17,Fog.,9,310,97,1012
739
+ 20230704,06:00,12:00,21,17,Fog.,11,300,89,1014
740
+ 20230704,12:00,18:00,21,20,Sunny.,19,280,73,1014
741
+ 20230704,18:00,00:00,19,17,Clear.,16,310,87,1014
742
+ 20230705,00:00,06:00,17,16,Passing clouds.,5,340,90,1014
743
+ 20230705,06:00,12:00,21,16,Passing clouds.,16,300,76,1014
744
+ 20230705,12:00,18:00,22,19,Sunny.,20,270,68,1014
745
+ 20230705,18:00,00:00,18,17,Passing clouds.,13,310,83,1014
746
+ 20230706,00:00,06:00,17,17,Overcast.,10,310,86,1013
747
+ 20230706,06:00,12:00,20,17,Overcast.,10,300,75,1014
748
+ 20230706,12:00,18:00,21,19,Passing clouds.,18,280,69,1013
749
+ 20230706,18:00,00:00,18,17,Passing clouds.,12,310,80,1012
750
+ 20230707,00:00,06:00,17,17,Passing clouds.,7,240,80,1012
751
+ 20230707,06:00,12:00,19,17,Partly sunny.,10,250,70,1012
752
+ 20230707,12:00,18:00,21,19,Passing clouds.,16,280,65,1011
753
+ 20230707,18:00,00:00,19,17,Passing clouds.,10,310,82,1010
754
+ 20230708,00:00,06:00,18,17,Overcast.,2,180,80,1010
755
+ 20230708,06:00,12:00,19,17,Passing clouds.,11,210,76,1011
756
+ 20230708,12:00,18:00,19,18,Scattered clouds.,15,200,75,1011
757
+ 20230708,18:00,00:00,18,17,Overcast.,7,240,84,1011
758
+ 20230709,00:00,06:00,17,17,Overcast.,6,210,88,1011
759
+ 20230709,06:00,12:00,18,17,Overcast.,6,150,84,1013
760
+ 20230709,12:00,18:00,21,20,Passing clouds.,16,270,71,1013
761
+ 20230709,18:00,00:00,19,18,Passing clouds.,11,300,85,1013
762
+ 20230710,00:00,06:00,18,18,Overcast.,6,280,87,1013
763
+ 20230710,06:00,12:00,22,18,Overcast.,12,290,82,1013
764
+ 20230710,12:00,18:00,22,19,Passing clouds.,17,270,75,1012
765
+ 20230710,18:00,00:00,19,17,Fog.,6,260,94,1013
766
+ 20230711,00:00,06:00,18,17,Fog.,6,250,96,1014
767
+ 20230711,06:00,12:00,22,18,Passing clouds.,9,300,87,1015
768
+ 20230711,12:00,18:00,23,22,Passing clouds.,16,290,74,1014
769
+ 20230711,18:00,00:00,22,20,Sunny.,10,330,85,1014
770
+ 20230712,00:00,06:00,20,20,Passing clouds.,10,330,92,1014
771
+ 20230712,06:00,12:00,20,20,Scattered clouds.,13,340,93,1015
772
+ 20230712,12:00,18:00,26,24,Scattered clouds.,19,320,60,1014
773
+ 20230712,18:00,00:00,24,21,Passing clouds.,14,310,74,1014
774
+ 20230713,00:00,06:00,21,20,Passing clouds.,11,330,92,1014
775
+ 20230713,06:00,12:00,26,22,Passing clouds.,13,320,73,1014
776
+ 20230713,12:00,18:00,26,23,Passing clouds.,19,310,61,1013
777
+ 20230713,18:00,00:00,23,20,Passing clouds.,13,310,78,1013
778
+ 20230714,00:00,06:00,20,19,Passing clouds.,9,310,95,1012
779
+ 20230714,06:00,12:00,22,19,Passing clouds.,11,200,90,1012
780
+ 20230714,12:00,18:00,23,22,Passing clouds.,12,270,70,1011
781
+ 20230714,18:00,00:00,22,20,Passing clouds.,9,310,88,1010
782
+ 20230715,00:00,06:00,19,18,Low clouds.,6,260,96,1011
783
+ 20230715,06:00,12:00,21,19,Scattered clouds.,11,210,86,1012
784
+ 20230715,12:00,18:00,22,20,Scattered clouds.,15,250,76,1011
785
+ 20230715,18:00,00:00,19,18,Passing clouds.,5,210,89,1011
786
+ 20230716,00:00,06:00,18,18,Clear.,3,210,94,1011
787
+ 20230716,06:00,12:00,21,18,Partly sunny.,8,200,90,1013
788
+ 20230716,12:00,18:00,21,21,Scattered clouds.,14,200,82,1012
789
+ 20230716,18:00,00:00,21,19,Passing clouds.,10,280,88,1012
790
+ 20230717,00:00,06:00,20,19,Clear.,7,320,93,1012
791
+ 20230717,06:00,12:00,24,20,Scattered clouds.,8,210,87,1014
792
+ 20230717,12:00,18:00,24,22,Scattered clouds.,14,270,73,1013
793
+ 20230717,18:00,00:00,21,20,Passing clouds.,8,270,88,1013
794
+ 20230718,00:00,06:00,20,19,Passing clouds.,7,300,96,1013
795
+ 20230718,06:00,12:00,24,20,Passing clouds.,12,300,83,1014
796
+ 20230718,12:00,18:00,23,22,Passing clouds.,16,270,79,1014
797
+ 20230718,18:00,00:00,21,20,Passing clouds.,10,320,90,1014
798
+ 20230719,00:00,06:00,20,19,Passing clouds.,10,320,93,1014
799
+ 20230719,06:00,12:00,24,21,Scattered clouds.,15,330,82,1015
800
+ 20230719,12:00,18:00,24,23,Scattered clouds.,18,300,75,1014
801
+ 20230719,18:00,00:00,22,20,Passing clouds.,12,310,88,1014
802
+ 20230720,00:00,06:00,20,19,Passing clouds.,9,310,96,1014
803
+ 20230720,06:00,12:00,24,21,Scattered clouds.,11,300,82,1015
804
+ 20230720,12:00,18:00,23,22,Passing clouds.,15,280,76,1014
805
+ 20230720,18:00,00:00,23,20,Passing clouds.,16,320,86,1012
806
+ 20230721,00:00,06:00,20,19,Passing clouds.,7,290,96,1012
807
+ 20230721,06:00,12:00,21,19,Fog.,10,190,89,1014
808
+ 20230721,12:00,18:00,23,21,Passing clouds.,14,280,73,1013
809
+ 20230721,18:00,00:00,21,19,Passing clouds.,13,310,90,1011
810
+ 20230722,00:00,06:00,19,18,Low clouds.,6,280,96,1011
811
+ 20230722,06:00,12:00,22,18,Fog.,6,0,90,1012
812
+ 20230722,12:00,18:00,22,21,Broken clouds.,11,280,77,1011
813
+ 20230722,18:00,00:00,21,19,Passing clouds.,6,330,88,1010
814
+ 20230723,00:00,06:00,19,18,Low clouds.,12,170,95,1012
815
+ 20230723,06:00,12:00,22,18,Fog.,9,180,88,1013
816
+ 20230723,12:00,18:00,23,21,Broken clouds.,10,310,85,1013
817
+ 20230723,18:00,00:00,21,19,Broken clouds.,4,240,93,1014
818
+ 20230724,00:00,06:00,20,19,Passing clouds.,3,220,95,1014
819
+ 20230724,06:00,12:00,22,20,Fog.,8,310,90,1015
820
+ 20230724,12:00,18:00,23,21,Scattered clouds.,16,290,79,1015
821
+ 20230724,18:00,00:00,21,19,Fog.,14,320,94,1015
822
+ 20230725,00:00,06:00,19,19,Fog.,6,300,100,1014
823
+ 20230725,06:00,12:00,23,19,Fog.,10,290,91,1015
824
+ 20230725,12:00,18:00,23,22,Scattered clouds.,13,290,79,1014
825
+ 20230725,18:00,00:00,22,20,Passing clouds.,5,270,90,1013
826
+ 20230726,00:00,06:00,19,19,Fog.,1,170,99,1013
827
+ 20230726,06:00,12:00,27,20,Fog.,7,310,83,1014
828
+ 20230726,12:00,18:00,26,22,Scattered clouds.,12,300,72,1013
829
+ 20230726,18:00,00:00,22,20,Passing clouds.,6,210,96,1012
830
+ 20230727,00:00,06:00,21,19,Fog.,4,160,99,1012
831
+ 20230727,06:00,12:00,24,21,Scattered clouds.,9,270,86,1013
832
+ 20230727,12:00,18:00,24,21,Scattered clouds.,15,210,80,1013
833
+ 20230727,18:00,00:00,21,19,Passing clouds.,6,200,92,1013
834
+ 20230728,00:00,06:00,19,19,Fog.,4,170,97,1012
835
+ 20230728,06:00,12:00,21,19,Fog.,11,140,94,1014
836
+ 20230728,12:00,18:00,22,21,Broken clouds.,15,200,84,1014
837
+ 20230728,18:00,00:00,21,20,Passing clouds.,7,280,90,1013
838
+ 20230729,00:00,06:00,20,20,Clear.,4,200,96,1013
839
+ 20230729,06:00,12:00,22,21,Broken clouds.,8,210,88,1015
840
+ 20230729,12:00,18:00,24,22,Scattered clouds.,16,210,81,1013
841
+ 20230729,18:00,00:00,22,20,Passing clouds.,6,270,92,1012
842
+ 20230730,00:00,06:00,20,20,Low clouds.,6,210,97,1011
843
+ 20230730,06:00,12:00,22,20,Broken clouds.,16,180,90,1014
844
+ 20230730,12:00,18:00,25,23,Partly sunny.,15,300,74,1012
845
+ 20230730,18:00,00:00,25,21,Passing clouds.,6,0,89,1012
846
+ 20230731,00:00,06:00,21,20,Fog.,8,170,100,1012
847
+ 20230731,06:00,12:00,23,21,Low clouds.,8,210,92,1014
848
+ 20230731,12:00,18:00,23,22,Broken clouds.,12,210,86,1014
849
+ 20230731,18:00,00:00,23,22,Partly cloudy.,5,200,90,1014
850
+ 20230801,00:00,06:00,22,21,Partly cloudy.,3,210,94,1014
851
+ 20230801,06:00,12:00,26,21,Broken clouds.,9,210,86,1016
852
+ 20230801,12:00,18:00,25,23,Broken clouds.,16,300,78,1015
853
+ 20230801,18:00,00:00,22,21,Passing clouds.,13,320,89,1015
854
+ 20230802,00:00,06:00,21,21,Passing clouds.,5,320,95,1015
855
+ 20230802,06:00,12:00,24,21,Passing clouds.,13,0,82,1016
856
+ 20230802,12:00,18:00,25,23,Passing clouds.,21,300,72,1015
857
+ 20230802,18:00,00:00,22,20,Passing clouds.,13,310,90,1015
858
+ 20230803,00:00,06:00,21,20,Passing clouds.,4,340,90,1015
859
+ 20230803,06:00,12:00,22,20,Passing clouds.,11,270,78,1016
860
+ 20230803,12:00,18:00,23,22,Passing clouds.,17,280,72,1015
861
+ 20230803,18:00,00:00,20,18,Passing clouds.,6,280,86,1015
862
+ 20230804,00:00,06:00,19,18,Passing clouds.,5,210,83,1014
863
+ 20230804,06:00,12:00,22,18,Partly sunny.,9,0,76,1014
864
+ 20230804,12:00,18:00,23,22,Passing clouds.,16,280,68,1012
865
+ 20230804,18:00,00:00,22,19,Passing clouds.,11,320,86,1012
866
+ 20230805,00:00,06:00,20,19,Overcast.,2,330,90,1011
867
+ 20230805,06:00,12:00,23,20,Passing clouds.,9,300,82,1012
868
+ 20230805,12:00,18:00,23,21,Passing clouds.,15,270,80,1012
869
+ 20230805,18:00,00:00,21,19,Passing clouds.,6,260,90,1012
870
+ 20230806,00:00,06:00,19,18,Low clouds.,3,220,98,1012
871
+ 20230806,06:00,12:00,22,19,Fog.,5,210,91,1014
872
+ 20230806,12:00,18:00,23,21,Passing clouds.,14,210,81,1014
873
+ 20230806,18:00,00:00,20,18,Passing clouds.,5,220,92,1015
874
+ 20230807,00:00,06:00,19,18,Fog.,4,300,96,1015
875
+ 20230807,06:00,12:00,23,18,Fog.,6,200,91,1016
876
+ 20230807,12:00,18:00,24,22,Passing clouds.,11,200,74,1016
877
+ 20230807,18:00,00:00,21,21,Passing clouds.,4,180,90,1016
878
+ 20230808,00:00,06:00,21,20,Passing clouds.,0,0,94,1016
879
+ 20230808,06:00,12:00,25,21,Sunny.,8,180,78,1016
880
+ 20230808,12:00,18:00,24,22,Broken clouds.,9,260,78,1016
881
+ 20230808,18:00,00:00,23,22,Passing clouds.,6,270,81,1015
882
+ 20230809,00:00,06:00,21,21,Passing clouds.,5,270,91,1014
883
+ 20230809,06:00,12:00,24,22,Overcast.,11,280,81,1015
884
+ 20230809,12:00,18:00,24,22,Scattered clouds.,15,250,75,1014
885
+ 20230809,18:00,00:00,22,21,Passing clouds.,9,280,87,1014
886
+ 20230810,00:00,06:00,21,21,Partly cloudy.,9,220,90,1014
887
+ 20230810,06:00,12:00,22,21,Broken clouds.,13,210,86,1015
888
+ 20230810,12:00,18:00,23,22,Broken clouds.,15,210,78,1014
889
+ 20230810,18:00,00:00,22,21,Passing clouds.,8,260,85,1014
890
+ 20230811,00:00,06:00,21,21,Passing clouds.,6,260,88,1014
891
+ 20230811,06:00,12:00,23,21,Overcast.,12,200,87,1016
892
+ 20230811,12:00,18:00,23,22,Partly sunny.,17,300,81,1015
893
+ 20230811,18:00,00:00,21,20,Passing clouds.,14,300,88,1015
894
+ 20230812,00:00,06:00,21,20,Overcast.,7,330,89,1015
895
+ 20230812,06:00,12:00,23,21,Overcast.,9,0,80,1016
896
+ 20230812,12:00,18:00,24,22,Broken clouds.,17,280,75,1016
897
+ 20230812,18:00,00:00,22,20,Passing clouds.,15,320,86,1015
898
+ 20230813,00:00,06:00,21,21,Overcast.,7,10,87,1014
899
+ 20230813,06:00,12:00,23,21,Overcast.,12,320,82,1015
900
+ 20230813,12:00,18:00,23,21,Broken clouds.,17,290,78,1014
901
+ 20230813,18:00,00:00,20,19,Low clouds.,11,310,90,1013
902
+ 20230814,00:00,06:00,20,19,Low clouds.,10,290,94,1013
903
+ 20230814,06:00,12:00,22,20,Overcast.,15,310,89,1014
904
+ 20230814,12:00,18:00,23,22,Broken clouds.,21,300,81,1013
905
+ 20230814,18:00,00:00,21,20,Low clouds.,11,320,92,1014
906
+ 20230815,00:00,06:00,20,19,Low clouds.,13,340,95,1014
907
+ 20230815,06:00,12:00,23,19,Fog.,15,0,90,1015
908
+ 20230815,12:00,18:00,24,21,Broken clouds.,24,320,74,1013
909
+ 20230815,18:00,00:00,21,20,Passing clouds.,15,310,87,1013
910
+ 20230816,00:00,06:00,20,20,Passing clouds.,12,330,90,1013
911
+ 20230816,06:00,12:00,24,20,Scattered clouds.,18,320,76,1013
912
+ 20230816,12:00,18:00,25,23,Scattered clouds.,25,310,68,1011
913
+ 20230816,18:00,00:00,22,21,Passing clouds.,14,300,86,1011
914
+ 20230817,00:00,06:00,20,19,Passing clouds.,13,320,90,1011
915
+ 20230817,06:00,12:00,23,20,Passing clouds.,16,310,82,1011
916
+ 20230817,12:00,18:00,23,21,Scattered clouds.,23,310,73,1010
917
+ 20230817,18:00,00:00,20,19,Passing clouds.,14,330,88,1011
918
+ 20230818,00:00,06:00,19,18,Fog.,11,330,88,1011
919
+ 20230818,06:00,12:00,22,18,Fog.,19,320,88,1011
920
+ 20230818,12:00,18:00,23,22,Scattered clouds.,22,310,70,1010
921
+ 20230818,18:00,00:00,21,19,Passing clouds.,9,290,85,1010
922
+ 20230819,00:00,06:00,19,18,Passing clouds.,14,340,90,1010
923
+ 20230819,06:00,12:00,21,18,Partly sunny.,10,170,84,1012
924
+ 20230819,12:00,18:00,22,21,More clouds than sun.,11,210,73,1010
925
+ 20230819,18:00,00:00,22,21,Mostly cloudy.,13,330,75,1008
926
+ 20230820,00:00,06:00,22,21,Light rain. Passing clouds.,13,10,87,1004
927
+ 20230820,06:00,12:00,23,22,Light rain. Partly sunny.,20,340,90,1000
928
+ 20230820,12:00,18:00,22,22,Light rain. Fog.,25,330,93,998
929
+ 20230820,18:00,00:00,19,18,Heavy rain. Fog.,41,160,64,1006
930
+ 20230821,00:00,06:00,,,Not Available,,,,
931
+ 20230821,06:00,12:00,22,19,Mostly cloudy.,2,320,89,1016
932
+ 20230821,12:00,18:00,23,21,Partly sunny.,10,210,71,1015
933
+ 20230821,18:00,00:00,21,20,Passing clouds.,9,320,80,1015
934
+ 20230822,00:00,06:00,20,18,Passing clouds.,10,330,92,1014
935
+ 20230822,06:00,12:00,23,18,Sunny.,12,310,84,1014
936
+ 20230822,12:00,18:00,24,23,Passing clouds.,26,320,69,1013
937
+ 20230822,18:00,00:00,22,21,Clear.,14,330,77,1013
938
+ 20230823,00:00,06:00,21,19,Clear.,8,340,86,1012
939
+ 20230823,06:00,12:00,23,19,Passing clouds.,15,310,81,1012
940
+ 20230823,12:00,18:00,23,22,Scattered clouds.,17,300,77,1011
941
+ 20230823,18:00,00:00,21,19,Passing clouds.,11,310,88,1012
942
+ 20230824,00:00,06:00,19,18,Passing clouds.,5,330,95,1013
943
+ 20230824,06:00,12:00,22,19,Partly sunny.,11,290,81,1014
944
+ 20230824,12:00,18:00,23,22,Passing clouds.,21,320,72,1013
945
+ 20230824,18:00,00:00,21,19,Passing clouds.,16,310,84,1014
946
+ 20230825,00:00,06:00,19,19,Passing clouds.,15,0,84,1014
947
+ 20230825,06:00,12:00,22,18,Fog.,20,330,85,1014
948
+ 20230825,12:00,18:00,23,22,Passing clouds.,23,310,71,1012
949
+ 20230825,18:00,00:00,21,19,Passing clouds.,11,310,86,1013
950
+ 20230826,00:00,06:00,19,18,Clear.,13,330,91,1013
951
+ 20230826,06:00,12:00,21,18,Passing clouds.,17,320,84,1014
952
+ 20230826,12:00,18:00,23,23,Passing clouds.,25,320,74,1012
953
+ 20230826,18:00,00:00,22,21,Clear.,12,340,79,1012
954
+ 20230827,00:00,06:00,20,19,Clear.,10,340,88,1012
955
+ 20230827,06:00,12:00,23,18,Passing clouds.,14,310,81,1013
956
+ 20230827,12:00,18:00,25,24,Passing clouds.,24,320,72,1011
957
+ 20230827,18:00,00:00,22,22,Clear.,13,320,77,1011
958
+ 20230828,00:00,06:00,21,20,Clear.,7,340,88,1010
959
+ 20230828,06:00,12:00,28,20,Sunny.,8,330,72,1011
960
+ 20230828,12:00,18:00,28,26,Passing clouds.,18,300,58,1010
961
+ 20230828,18:00,00:00,24,20,Clear.,9,320,79,1010
962
+ 20230829,00:00,06:00,21,19,Fog.,8,340,94,1010
963
+ 20230829,06:00,12:00,26,19,Fog.,8,320,83,1010
964
+ 20230829,12:00,18:00,28,26,Sunny.,12,310,54,1009
965
+ 20230829,18:00,00:00,23,21,Passing clouds.,9,320,82,1009
966
+ 20230830,00:00,06:00,22,21,Fog.,1,340,93,1009
967
+ 20230830,06:00,12:00,22,20,Fog.,6,180,97,841
968
+ 20230830,12:00,18:00,22,21,Fog.,11,160,88,1011
969
+ 20230830,18:00,00:00,22,19,Fog.,2,180,93,1009
970
+ 20230831,00:00,06:00,20,19,Fog.,3,130,94,1009
971
+ 20230831,06:00,12:00,21,19,Fog.,9,170,93,1010
972
+ 20230831,12:00,18:00,22,21,Broken clouds.,11,180,82,1010
973
+ 20230831,18:00,00:00,20,19,Passing clouds.,4,170,92,1009
974
+ 20230901,00:00,06:00,19,19,Partly cloudy.,10,170,93,1010
975
+ 20230901,06:00,12:00,22,19,Scattered clouds.,13,170,85,1012
976
+ 20230901,12:00,18:00,23,22,Partly sunny.,16,200,80,1012
977
+ 20230901,18:00,00:00,22,21,Fog.,4,150,88,1013
978
+ 20230902,00:00,06:00,21,21,Fog.,4,150,89,1014
979
+ 20230902,06:00,12:00,22,21,Fog.,6,210,95,1016
980
+ 20230902,12:00,18:00,25,22,Passing clouds.,13,300,79,1015
981
+ 20230902,18:00,00:00,23,22,Passing clouds.,14,330,85,1015
982
+ 20230903,00:00,06:00,22,22,Mostly cloudy.,10,300,84,1016
983
+ 20230903,06:00,12:00,24,21,Overcast.,16,320,80,1016
984
+ 20230903,12:00,18:00,25,23,Partly sunny.,23,300,67,1015
985
+ 20230903,18:00,00:00,22,21,Passing clouds.,18,310,75,1014
986
+ 20230904,00:00,06:00,20,19,Passing clouds.,10,280,81,1014
987
+ 20230904,06:00,12:00,23,21,Passing clouds.,12,280,68,1014
988
+ 20230904,12:00,18:00,23,23,Sunny.,17,260,62,1012
989
+ 20230904,18:00,00:00,21,18,Clear.,5,320,83,1011
990
+ 20230905,00:00,06:00,18,18,Passing clouds.,2,190,92,1011
991
+ 20230905,06:00,12:00,22,19,Overcast.,7,180,80,1013
992
+ 20230905,12:00,18:00,23,22,Overcast.,13,200,68,1013
993
+ 20230905,18:00,00:00,21,21,Passing clouds.,5,260,69,1013
994
+ 20230906,00:00,06:00,21,21,Overcast.,7,280,75,1013
995
+ 20230906,06:00,12:00,24,21,Partly sunny.,13,300,67,1014
996
+ 20230906,12:00,18:00,25,23,Sunny.,20,300,59,1013
997
+ 20230906,18:00,00:00,22,21,Clear.,11,320,73,1014
998
+ 20230907,00:00,06:00,20,19,Passing clouds.,7,350,81,1013
999
+ 20230907,06:00,12:00,23,20,Passing clouds.,11,320,78,1014
1000
+ 20230907,12:00,18:00,24,23,Passing clouds.,24,320,69,1013
1001
+ 20230907,18:00,00:00,22,21,Passing clouds.,14,320,84,1014
1002
+ 20230908,00:00,06:00,21,19,Passing clouds.,9,10,90,1015
1003
+ 20230908,06:00,12:00,26,19,Fog.,10,330,81,1015
1004
+ 20230908,12:00,18:00,27,25,Scattered clouds.,19,320,66,1015
1005
+ 20230908,18:00,00:00,24,23,Clear.,12,320,79,1015
1006
+ 20230909,00:00,06:00,23,22,Clear.,12,340,81,1015
1007
+ 20230909,06:00,12:00,27,22,Passing clouds.,13,310,73,1015
1008
+ 20230909,12:00,18:00,28,25,Scattered clouds.,20,320,62,1014
1009
+ 20230909,18:00,00:00,25,23,Passing clouds.,10,290,73,1014
1010
+ 20230910,00:00,06:00,23,21,Clear.,4,290,85,1013
1011
+ 20230910,06:00,12:00,28,22,Partly sunny.,11,300,73,1013
1012
+ 20230910,12:00,18:00,27,26,Partly sunny.,16,300,64,1012
1013
+ 20230910,18:00,00:00,24,23,Passing clouds.,11,310,82,1012
1014
+ 20230911,00:00,06:00,23,22,Clear.,9,320,88,1012
1015
+ 20230911,06:00,12:00,27,22,Broken clouds.,8,320,78,1013
1016
+ 20230911,12:00,18:00,26,23,Broken clouds.,21,310,77,1012
1017
+ 20230911,18:00,00:00,24,22,Passing clouds.,12,330,81,1012
1018
+ 20230912,00:00,06:00,22,21,Passing clouds.,9,310,91,1012
1019
+ 20230912,06:00,12:00,23,21,Passing clouds.,7,340,86,1013
1020
+ 20230912,12:00,18:00,23,21,Scattered clouds.,14,210,75,1013
1021
+ 20230912,18:00,00:00,20,19,Passing clouds.,3,210,81,1013
1022
+ 20230913,00:00,06:00,20,20,Passing clouds.,6,190,78,1014
1023
+ 20230913,06:00,12:00,22,20,Overcast.,9,210,75,1015
1024
+ 20230913,12:00,18:00,22,21,Passing clouds.,15,230,68,1013
1025
+ 20230913,18:00,00:00,19,18,Passing clouds.,5,200,84,1013
1026
+ 20230914,00:00,06:00,19,18,Passing clouds.,3,110,80,1014
1027
+ 20230914,06:00,12:00,22,19,Partly sunny.,5,190,69,1015
1028
+ 20230914,12:00,18:00,23,22,Passing clouds.,16,280,64,1013
1029
+ 20230914,18:00,00:00,21,19,Passing clouds.,11,310,76,1014
1030
+ 20230915,00:00,06:00,20,20,Passing clouds.,5,230,76,1014
1031
+ 20230915,06:00,12:00,21,20,Overcast.,7,280,74,1015
1032
+ 20230915,12:00,18:00,22,21,Overcast.,19,280,68,1014
1033
+ 20230915,18:00,00:00,21,21,Overcast.,10,280,75,1014
1034
+ 20230916,00:00,06:00,21,21,Overcast.,9,260,76,1014
1035
+ 20230916,06:00,12:00,21,20,Overcast.,10,220,75,1015
1036
+ 20230916,12:00,18:00,22,21,Overcast.,16,270,72,1015
1037
+ 20230916,18:00,00:00,21,21,Overcast.,13,290,78,1015
1038
+ 20230917,00:00,06:00,21,20,Overcast.,10,340,77,1014
1039
+ 20230917,06:00,12:00,21,20,Overcast.,9,340,77,1016
1040
+ 20230917,12:00,18:00,22,21,Overcast.,15,280,70,1015
1041
+ 20230917,18:00,00:00,21,21,Overcast.,14,320,74,1015
1042
+ 20230918,00:00,06:00,21,20,Overcast.,7,10,84,1015
1043
+ 20230918,06:00,12:00,23,20,Broken clouds.,13,290,76,1016
1044
+ 20230918,12:00,18:00,23,22,Passing clouds.,19,300,64,1015
1045
+ 20230918,18:00,00:00,21,20,Passing clouds.,13,310,75,1014
1046
+ 20230919,00:00,06:00,19,16,Passing clouds.,5,110,86,1014
1047
+ 20230919,06:00,12:00,23,15,Scattered clouds.,9,100,74,1014
1048
+ 20230919,12:00,18:00,23,21,Passing clouds.,17,260,63,1013
1049
+ 20230919,18:00,00:00,20,19,Passing clouds.,5,270,77,1013
1050
+ 20230920,00:00,06:00,20,18,Passing clouds.,5,290,78,1012
1051
+ 20230920,06:00,12:00,22,18,Broken clouds.,8,160,77,1012
1052
+ 20230920,12:00,18:00,23,21,Passing clouds.,15,280,61,1012
1053
+ 20230920,18:00,00:00,20,19,Passing clouds.,10,320,75,1012
1054
+ 20230921,00:00,06:00,19,18,Partly cloudy.,3,120,82,1012
1055
+ 20230921,06:00,12:00,21,19,Partly sunny.,8,100,78,1014
1056
+ 20230921,12:00,18:00,23,21,Scattered clouds.,19,300,65,1013
1057
+ 20230921,18:00,00:00,21,19,Passing clouds.,12,320,73,1014
1058
+ 20230922,00:00,06:00,19,18,Partly cloudy.,6,330,78,1014
1059
+ 20230922,06:00,12:00,19,18,Partly sunny.,9,320,77,1015
1060
+ 20230922,12:00,18:00,20,19,Broken clouds.,14,320,81,1016
1061
+ 20230922,18:00,00:00,20,19,Passing clouds.,14,330,84,1014
1062
+ 20230923,00:00,06:00,19,19,Passing clouds.,10,320,86,1015
1063
+ 20230923,06:00,12:00,22,19,Scattered clouds.,11,0,77,1016
1064
+ 20230923,12:00,18:00,23,21,Passing clouds.,23,320,64,1015
1065
+ 20230923,18:00,00:00,20,18,Passing clouds.,10,310,81,1015
1066
+ 20230924,00:00,06:00,19,17,Overcast.,3,270,84,1016
1067
+ 20230924,06:00,12:00,22,18,Passing clouds.,7,290,73,1016
1068
+ 20230924,12:00,18:00,23,21,Sunny.,22,290,67,1015
1069
+ 20230924,18:00,00:00,20,18,Passing clouds.,7,310,83,1016
1070
+ 20230925,00:00,06:00,19,18,Overcast.,4,340,85,1016
1071
+ 20230925,06:00,12:00,23,19,Overcast.,10,0,75,1017
1072
+ 20230925,12:00,18:00,22,21,Passing clouds.,22,300,70,1016
1073
+ 20230925,18:00,00:00,19,19,Passing clouds.,15,320,82,1017
1074
+ 20230926,00:00,06:00,19,16,Passing clouds.,5,10,88,1016
1075
+ 20230926,06:00,12:00,22,17,Fog.,9,320,81,1016
1076
+ 20230926,12:00,18:00,23,22,Passing clouds.,17,310,69,1014
1077
+ 20230926,18:00,00:00,21,18,Passing clouds.,4,300,88,1014
1078
+ 20230927,00:00,06:00,18,17,Fog.,2,40,94,1013
1079
+ 20230927,06:00,12:00,21,17,Fog.,4,200,90,1013
1080
+ 20230927,12:00,18:00,22,19,Broken clouds.,12,180,81,1011
1081
+ 20230927,18:00,00:00,19,18,Passing clouds.,8,150,86,1011
1082
+ 20230928,00:00,06:00,18,18,Fog.,9,160,88,1011
1083
+ 20230928,06:00,12:00,19,18,Fog.,11,170,82,1012
1084
+ 20230928,12:00,18:00,21,20,Scattered clouds.,13,210,73,1011
1085
+ 20230928,18:00,00:00,19,19,Overcast.,6,160,77,1011
1086
+ 20230929,00:00,06:00,19,18,Passing clouds.,9,190,76,1010
1087
+ 20230929,06:00,12:00,19,18,Overcast.,10,170,76,1012
1088
+ 20230929,12:00,18:00,21,19,Scattered clouds.,13,220,65,1011
1089
+ 20230929,18:00,00:00,19,18,Overcast.,5,200,75,1011
1090
+ 20230930,00:00,06:00,19,18,Overcast.,10,140,78,1011
1091
+ 20230930,06:00,12:00,21,18,Broken clouds.,14,150,76,1012
1092
+ 20230930,12:00,18:00,22,19,Partly sunny.,17,250,70,1011
1093
+ 20230930,18:00,00:00,19,18,Partly cloudy.,12,310,81,1011
1094
+ 20231001,00:00,06:00,18,17,Overcast.,13,310,79,1011
1095
+ 20231001,06:00,12:00,19,18,Broken clouds.,11,310,59,1013
1096
+ 20231001,12:00,18:00,21,19,Broken clouds.,14,280,56,1013
1097
+ 20231001,18:00,00:00,18,17,Passing clouds.,8,300,71,1014
1098
+ 20231002,00:00,06:00,17,14,Clear.,6,90,85,1014
1099
+ 20231002,06:00,12:00,21,13,Sunny.,9,110,72,1016
1100
+ 20231002,12:00,18:00,22,19,Passing clouds.,22,290,59,1014
1101
+ 20231002,18:00,00:00,19,18,Passing clouds.,14,320,76,1015
1102
+ 20231003,00:00,06:00,17,13,Passing clouds.,9,10,86,1014
1103
+ 20231003,06:00,12:00,,,Not Available,,,,
1104
+ 20231003,12:00,18:00,23,23,Passing clouds.,26,320,65,1012
1105
+ 20231003,18:00,00:00,20,18,Clear.,5,320,86,1012
1106
+ 20231004,00:00,06:00,18,16,Clear.,5,330,93,1012
1107
+ 20231004,06:00,12:00,24,15,Fog.,7,350,74,1013
1108
+ 20231004,12:00,18:00,26,24,Sunny.,22,300,53,1011
1109
+ 20231004,18:00,00:00,22,18,Clear.,6,140,86,1012
1110
+ 20231005,00:00,06:00,18,17,Clear.,3,140,92,1013
1111
+ 20231005,06:00,12:00,27,16,Sunny.,7,0,62,1014
1112
+ 20231005,12:00,18:00,28,24,Sunny.,13,320,53,1012
1113
+ 20231005,18:00,00:00,23,20,Clear.,6,340,75,1013
1114
+ 20231006,00:00,06:00,19,18,Clear.,7,10,85,1012
1115
+ 20231006,06:00,12:00,26,16,Sunny.,4,340,69,1012
1116
+ 20231006,12:00,18:00,26,21,Passing clouds.,9,340,69,1011
1117
+ 20231006,18:00,00:00,19,17,Fog.,4,100,96,1011
1118
+ 20231007,00:00,06:00,18,17,Fog.,0,0,98,1011
1119
+ 20231007,06:00,12:00,25,17,Fog.,3,0,87,1012
1120
+ 20231007,12:00,18:00,27,22,Broken clouds.,10,280,63,1010
1121
+ 20231007,18:00,00:00,22,18,Fog.,4,160,95,1011
1122
+ 20231008,00:00,06:00,20,18,Fog.,12,330,97,1011
1123
+ 20231008,06:00,12:00,23,18,Fog.,13,320,91,1012
1124
+ 20231008,12:00,18:00,23,21,Scattered clouds.,26,320,77,1010
1125
+ 20231008,18:00,00:00,20,19,Passing clouds.,14,330,90,1010
1126
+ 20231009,00:00,06:00,19,19,Fog.,14,340,92,1011
1127
+ 20231009,06:00,12:00,22,18,Fog.,14,320,84,1011
1128
+ 20231009,12:00,18:00,22,19,Sunny.,23,300,77,1009
1129
+ 20231009,18:00,00:00,19,18,Passing clouds.,12,310,86,1009
1130
+ 20231010,00:00,06:00,18,18,Overcast.,4,340,82,1009
1131
+ 20231010,06:00,12:00,20,18,Overcast.,8,130,75,1010
1132
+ 20231010,12:00,18:00,22,20,Scattered clouds.,14,270,69,1008
1133
+ 20231010,18:00,00:00,19,18,Drizzle. Mostly cloudy.,11,260,93,1007
1134
+ 20231011,00:00,06:00,18,17,Passing clouds.,6,180,88,1006
1135
+ 20231011,06:00,12:00,20,18,Broken clouds.,14,160,84,1007
1136
+ 20231011,12:00,18:00,21,19,Passing clouds.,14,250,73,1005
1137
+ 20231011,18:00,00:00,19,17,Passing clouds.,6,180,87,1005
1138
+ 20231012,00:00,06:00,18,16,Passing clouds.,4,160,88,1006
1139
+ 20231012,06:00,12:00,21,16,Passing clouds.,5,160,77,1008
1140
+ 20231012,12:00,18:00,21,19,Scattered clouds.,12,200,74,1007
1141
+ 20231012,18:00,00:00,19,18,Passing clouds.,3,350,83,1009
1142
+ 20231013,00:00,06:00,19,16,Passing clouds.,5,10,85,1010
1143
+ 20231013,06:00,12:00,21,16,Sunny.,6,160,83,1012
1144
+ 20231013,12:00,18:00,22,20,Partly sunny.,11,260,72,1012
1145
+ 20231013,18:00,00:00,19,17,Passing clouds.,5,280,84,1014
1146
+ 20231014,00:00,06:00,18,17,Low clouds.,6,320,88,1015
1147
+ 20231014,06:00,12:00,21,17,Fog.,10,40,86,1017
1148
+ 20231014,12:00,18:00,23,21,Passing clouds.,24,320,71,1015
1149
+ 20231014,18:00,00:00,20,18,Passing clouds.,7,320,92,1016
1150
+ 20231015,00:00,06:00,17,16,Fog.,1,10,95,1016
1151
+ 20231015,06:00,12:00,24,15,Sunny.,4,330,77,1016
1152
+ 20231015,12:00,18:00,25,22,Sunny.,19,310,59,1015
1153
+ 20231015,18:00,00:00,21,18,Clear.,7,310,92,1016
1154
+ 20231016,00:00,06:00,18,16,Fog.,3,350,98,1015
1155
+ 20231016,06:00,12:00,21,17,Fog.,4,320,89,1016
1156
+ 20231016,12:00,18:00,22,20,Passing clouds.,12,300,77,1014
1157
+ 20231016,18:00,00:00,19,18,Passing clouds.,4,300,90,1014
1158
+ 20231017,00:00,06:00,18,17,Fog.,4,280,92,1013
1159
+ 20231017,06:00,12:00,19,17,Fog.,9,220,90,1014
1160
+ 20231017,12:00,18:00,21,19,Passing clouds.,11,180,82,1012
1161
+ 20231017,18:00,00:00,19,18,Passing clouds.,4,210,91,1012
1162
+ 20231018,00:00,06:00,18,18,Low clouds.,5,340,94,1012
1163
+ 20231018,06:00,12:00,19,17,Fog.,3,320,92,1013
1164
+ 20231018,12:00,18:00,21,19,Passing clouds.,11,280,77,1012
1165
+ 20231018,18:00,00:00,19,18,Fog.,11,330,92,1013
1166
+ 20231019,00:00,06:00,18,17,Fog.,9,0,99,1013
1167
+ 20231019,06:00,12:00,22,17,Fog.,16,330,90,1014
1168
+ 20231019,12:00,18:00,23,21,Scattered clouds.,23,310,75,1013
1169
+ 20231019,18:00,00:00,21,20,Passing clouds.,12,340,82,1012
1170
+ 20231020,00:00,06:00,19,18,Fog.,15,330,99,1012
1171
+ 20231020,06:00,12:00,24,18,Fog.,14,330,85,1013
1172
+ 20231020,12:00,18:00,24,22,Passing clouds.,23,310,71,1010
1173
+ 20231020,18:00,00:00,21,19,Clear.,8,310,88,1011
1174
+ 20231021,00:00,06:00,18,17,Clear.,4,340,94,1010
1175
+ 20231021,06:00,12:00,24,16,Sunny.,8,310,77,1011
1176
+ 20231021,12:00,18:00,24,21,Sunny.,23,320,70,1010
1177
+ 20231021,18:00,00:00,20,19,Passing clouds.,13,310,86,1010
1178
+ 20231022,00:00,06:00,19,19,Overcast.,9,270,82,1010
1179
+ 20231022,06:00,12:00,21,19,Partly sunny.,9,170,71,1011
1180
+ 20231022,12:00,18:00,21,20,Passing clouds.,14,180,71,1010
1181
+ 20231022,18:00,00:00,20,19,Passing clouds.,11,260,81,1009
1182
+ 20231023,00:00,06:00,19,18,Passing clouds.,15,280,80,1009
1183
+ 20231023,06:00,12:00,19,18,Broken clouds.,11,270,78,1009
1184
+ 20231023,12:00,18:00,20,19,Partly sunny.,16,280,70,1007
1185
+ 20231023,18:00,00:00,18,16,Passing clouds.,2,340,88,1008
1186
+ 20231024,00:00,06:00,16,14,Clear.,2,140,94,1009
1187
+ 20231024,06:00,12:00,20,14,Passing clouds.,7,110,79,1011
1188
+ 20231024,12:00,18:00,21,18,Sunny.,12,210,75,1010
1189
+ 20231024,18:00,00:00,18,18,Overcast.,8,170,82,1012
1190
+ 20231025,00:00,06:00,18,18,Passing clouds.,14,180,80,1014
1191
+ 20231025,06:00,12:00,18,18,Partly sunny.,12,170,82,1016
1192
+ 20231025,12:00,18:00,19,18,Partly sunny.,8,210,80,1016
1193
+ 20231025,18:00,00:00,18,17,Mostly cloudy.,2,240,86,1016
1194
+ 20231026,00:00,06:00,17,17,Passing clouds.,1,150,90,1016
1195
+ 20231026,06:00,12:00,21,16,Scattered clouds.,6,190,80,1016
1196
+ 20231026,12:00,18:00,22,19,Scattered clouds.,22,300,71,1015
1197
+ 20231026,18:00,00:00,18,16,Passing clouds.,4,310,85,1016
1198
+ 20231027,00:00,06:00,18,16,Passing clouds.,2,290,89,1016
1199
+ 20231027,06:00,12:00,21,17,Scattered clouds.,6,180,79,1016
1200
+ 20231027,12:00,18:00,20,18,Scattered clouds.,11,270,70,1015
1201
+ 20231027,18:00,00:00,17,15,Passing clouds.,2,280,84,1015
1202
+ 20231028,00:00,06:00,16,13,Clear.,2,80,86,1015
1203
+ 20231028,06:00,12:00,20,12,Passing clouds.,5,200,75,1016
1204
+ 20231028,12:00,18:00,21,19,Sunny.,13,270,69,1014
1205
+ 20231028,18:00,00:00,18,16,Fog.,3,320,88,1014
1206
+ 20231029,00:00,06:00,15,13,Clear.,4,80,90,1015
1207
+ 20231029,06:00,12:00,23,12,Sunny.,3,130,65,1016
1208
+ 20231029,12:00,18:00,25,21,Sunny.,17,290,31,1015
1209
+ 20231029,18:00,00:00,21,15,Clear.,6,120,48,1016
1210
+ 20231030,00:00,06:00,14,11,Clear.,2,340,46,1017
1211
+ 20231030,06:00,12:00,24,10,Passing clouds.,2,320,32,1018
1212
+ 20231030,12:00,18:00,25,21,Passing clouds.,19,320,26,1015
1213
+ 20231030,18:00,00:00,19,12,Clear.,4,290,76,1016
1214
+ 20231031,00:00,06:00,14,10,Clear.,1,30,70,1016
1215
+ 20231031,06:00,12:00,25,10,Passing clouds.,3,340,36,1017
1216
+ 20231031,12:00,18:00,27,23,Passing clouds.,17,340,14,1015
1217
+ 20231031,18:00,00:00,21,15,Passing clouds.,6,340,34,1016
1218
+ 20231101,00:00,06:00,14,12,Passing clouds.,3,110,54,1016
1219
+ 20231101,06:00,12:00,27,12,Scattered clouds.,0,0,30,1017
1220
+ 20231101,12:00,18:00,28,23,Partly sunny.,14,320,13,1014
1221
+ 20231101,18:00,00:00,19,13,Passing clouds.,0,0,48,1016
1222
+ 20231102,00:00,06:00,14,12,Passing clouds.,0,0,61,1016
1223
+ 20231102,06:00,12:00,25,13,Passing clouds.,2,200,27,1018
1224
+ 20231102,12:00,18:00,26,19,Passing clouds.,11,280,24,1016
1225
+ 20231102,18:00,00:00,17,14,Clear.,2,140,81,1018
1226
+ 20231103,00:00,06:00,13,12,Clear.,1,300,81,1017
1227
+ 20231103,06:00,12:00,22,12,Sunny.,1,180,38,1017
1228
+ 20231103,12:00,18:00,25,19,Sunny.,14,320,45,1016
1229
+ 20231103,18:00,00:00,17,13,Clear.,1,250,95,1017
1230
+ 20231104,00:00,06:00,13,10,Clear.,1,340,77,1017
1231
+ 20231104,06:00,12:00,22,11,Passing clouds.,6,20,51,1017
1232
+ 20231104,12:00,18:00,23,20,Scattered clouds.,17,320,52,1015
1233
+ 20231104,18:00,00:00,18,15,Fog.,8,340,79,1016
1234
+ 20231105,00:00,06:00,16,13,Fog.,9,0,88,1015
1235
+ 20231105,06:00,12:00,23,13,Passing clouds.,8,330,58,1015
1236
+ 20231105,12:00,18:00,22,18,Passing clouds.,16,310,75,1012
1237
+ 20231105,18:00,00:00,17,15,Fog.,9,350,95,1013
1238
+ 20231106,00:00,06:00,16,14,Fog.,9,330,97,1013
1239
+ 20231106,06:00,12:00,20,14,Fog.,7,0,86,1015
1240
+ 20231106,12:00,18:00,20,17,Passing clouds.,11,280,78,1013
1241
+ 20231106,18:00,00:00,18,16,Passing clouds.,7,340,89,1015
1242
+ 20231107,00:00,06:00,17,16,Fog.,7,130,89,1015
1243
+ 20231107,06:00,12:00,19,16,Overcast.,8,190,77,1016
1244
+ 20231107,12:00,18:00,19,18,Scattered clouds.,15,280,75,1015
1245
+ 20231107,18:00,00:00,18,16,Passing clouds.,6,340,82,1016
1246
+ 20231108,00:00,06:00,14,13,Clear.,3,90,92,1017
1247
+ 20231108,06:00,12:00,21,13,Passing clouds.,8,0,72,1018
1248
+ 20231108,12:00,18:00,21,19,Passing clouds.,18,310,60,1015
1249
+ 20231108,18:00,00:00,18,13,Clear.,6,350,64,1017
1250
+ 20231109,00:00,06:00,14,9,Clear.,2,340,58,1017
1251
+ 20231109,06:00,12:00,22,11,Sunny.,6,280,31,1018
1252
+ 20231109,12:00,18:00,22,19,Passing clouds.,16,300,43,1016
1253
+ 20231109,18:00,00:00,18,12,Clear.,4,0,64,1017
1254
+ 20231110,00:00,06:00,13,9,Clear.,2,130,48,1016
1255
+ 20231110,06:00,12:00,24,11,Sunny.,2,310,23,1017
1256
+ 20231110,12:00,18:00,23,17,Scattered clouds.,13,280,42,1015
1257
+ 20231110,18:00,00:00,16,11,Passing clouds.,2,340,66,1017
1258
+ 20231111,00:00,06:00,12,8,Clear.,4,10,56,1016
1259
+ 20231111,06:00,12:00,23,9,Sunny.,5,320,30,1018
1260
+ 20231111,12:00,18:00,23,18,Passing clouds.,16,330,38,1016
1261
+ 20231111,18:00,00:00,17,12,Clear.,6,340,70,1017
1262
+ 20231112,00:00,06:00,12,10,Clear.,1,350,69,1015
1263
+ 20231112,06:00,12:00,26,12,Passing clouds.,9,320,38,1016
1264
+ 20231112,12:00,18:00,27,18,Passing clouds.,7,210,36,1014
1265
+ 20231112,18:00,00:00,16,12,Clear.,2,40,74,1016
1266
+ 20231113,00:00,06:00,12,11,Clear.,0,0,68,1016
1267
+ 20231113,06:00,12:00,23,13,Scattered clouds.,5,20,38,1016
1268
+ 20231113,12:00,18:00,23,16,Partly sunny.,6,290,51,1014
1269
+ 20231113,18:00,00:00,17,12,Passing clouds.,3,330,87,1016
1270
+ 20231114,00:00,06:00,13,11,Passing clouds.,2,340,67,1015
1271
+ 20231114,06:00,12:00,24,11,Sunny.,6,340,38,1016
1272
+ 20231114,12:00,18:00,23,18,Partly sunny.,13,320,47,1014
1273
+ 20231114,18:00,00:00,17,15,Passing clouds.,2,350,66,1014
1274
+ 20231115,00:00,06:00,16,14,Passing clouds.,5,340,67,1014
1275
+ 20231115,06:00,12:00,18,15,Broken clouds.,4,280,61,1014
1276
+ 20231115,12:00,18:00,18,15,Broken clouds.,14,210,80,1013
1277
+ 20231115,18:00,00:00,16,16,Light rain. Fog.,13,170,98,1016
1278
+ 20231116,00:00,06:00,17,16,Light rain. Fog.,4,40,98,1015
1279
+ 20231116,06:00,12:00,21,17,Broken clouds.,7,80,89,1016
1280
+ 20231116,12:00,18:00,21,18,Passing clouds.,9,330,82,1015
1281
+ 20231116,18:00,00:00,18,14,Fog.,5,340,93,1015
1282
+ 20231117,00:00,06:00,15,13,Passing clouds.,3,350,95,1015
1283
+ 20231117,06:00,12:00,19,14,Passing clouds.,6,210,77,1016
1284
+ 20231117,12:00,18:00,19,18,Haze.,9,200,84,1014
1285
+ 20231117,18:00,00:00,18,17,Fog.,2,0,93,1015
1286
+ 20231118,00:00,06:00,16,14,Fog.,2,350,95,1016
1287
+ 20231118,06:00,12:00,19,14,Partly sunny.,6,170,87,1017
1288
+ 20231118,12:00,18:00,19,18,Scattered clouds.,11,210,83,1017
1289
+ 20231118,18:00,00:00,19,16,Fog.,3,150,94,1019
1290
+ 20231119,00:00,06:00,17,16,Overcast.,4,100,91,1019
1291
+ 20231119,06:00,12:00,19,17,Broken clouds.,10,170,88,1020
1292
+ 20231119,12:00,18:00,20,17,Passing clouds.,16,290,76,1017
1293
+ 20231119,18:00,00:00,17,13,Passing clouds.,6,0,91,1017
1294
+ 20231120,00:00,06:00,14,12,Clear.,3,30,93,1017
1295
+ 20231120,06:00,12:00,22,12,Sunny.,7,300,60,1019
1296
+ 20231120,12:00,18:00,23,18,Sunny.,13,310,38,1018
1297
+ 20231120,18:00,00:00,16,13,Clear.,2,340,76,1021
1298
+ 20231121,00:00,06:00,14,10,Clear.,4,150,63,1022
1299
+ 20231121,06:00,12:00,24,11,Sunny.,2,300,42,1024
1300
+ 20231121,12:00,18:00,25,19,Sunny.,18,340,31,1022
1301
+ 20231121,18:00,00:00,19,13,Clear.,3,0,61,1022
1302
+ 20231122,00:00,06:00,13,12,Passing clouds.,2,320,65,1020
1303
+ 20231122,06:00,12:00,26,12,Scattered clouds.,9,320,34,1019
1304
+ 20231122,12:00,18:00,25,20,Passing clouds.,20,320,26,1015
1305
+ 20231122,18:00,00:00,18,14,Clear.,4,320,49,1014
1306
+ 20231123,00:00,06:00,14,12,Clear.,0,0,61,1012
1307
+ 20231123,06:00,12:00,19,13,Sunny.,15,160,69,1012
1308
+ 20231123,12:00,18:00,19,17,Overcast.,17,200,75,1010
1309
+ 20231123,18:00,00:00,17,17,Passing clouds.,19,170,78,1011
1310
+ 20231124,00:00,06:00,17,16,Overcast.,16,230,79,1011
1311
+ 20231124,06:00,12:00,18,16,Partly sunny.,14,220,65,1013
1312
+ 20231124,12:00,18:00,18,17,Broken clouds.,10,230,72,1013
1313
+ 20231124,18:00,00:00,17,13,Passing clouds.,1,90,82,1015
1314
+ 20231125,00:00,06:00,14,11,Clear.,5,80,82,1016
1315
+ 20231125,06:00,12:00,18,11,Sunny.,7,110,65,1017
1316
+ 20231125,12:00,18:00,19,16,Passing clouds.,20,310,62,1016
1317
+ 20231125,18:00,00:00,16,11,Passing clouds.,5,40,63,1017
1318
+ 20231126,00:00,06:00,11,9,Clear.,1,0,52,1017
1319
+ 20231126,06:00,12:00,21,10,Partly sunny.,9,350,39,1018
1320
+ 20231126,12:00,18:00,21,17,Partly sunny.,15,320,35,1016
1321
+ 20231126,18:00,00:00,16,12,Passing clouds.,1,350,60,1016
1322
+ 20231127,00:00,06:00,13,9,Clear.,4,10,58,1016
1323
+ 20231127,06:00,12:00,21,9,Scattered clouds.,7,0,35,1018
1324
+ 20231127,12:00,18:00,21,16,Scattered clouds.,13,320,39,1017
1325
+ 20231127,18:00,00:00,15,13,Passing clouds.,0,0,63,1020
1326
+ 20231128,00:00,06:00,13,10,Partly cloudy.,2,0,59,1020
1327
+ 20231128,06:00,12:00,21,11,Passing clouds.,6,310,41,1020
1328
+ 20231128,12:00,18:00,19,16,Passing clouds.,14,290,53,1018
1329
+ 20231128,18:00,00:00,14,11,Passing clouds.,2,100,80,1018
1330
+ 20231129,00:00,06:00,11,9,Passing clouds.,1,100,66,1017
1331
+ 20231129,06:00,12:00,17,11,Partly sunny.,6,120,59,1017
1332
+ 20231129,12:00,18:00,16,16,Partly cloudy.,4,290,80,1014
1333
+ 20231129,18:00,00:00,16,14,Partly cloudy.,3,40,86,1014
1334
+ 20231130,00:00,06:00,14,13,Partly cloudy.,7,70,96,1013
1335
+ 20231130,06:00,12:00,17,15,Broken clouds.,7,160,88,1014
1336
+ 20231130,12:00,18:00,16,16,Broken clouds.,4,260,88,1013
1337
+ 20231130,18:00,00:00,15,15,Passing clouds.,9,270,84,1014
1338
+ 20231201,06:00,12:00,14,14,Passing clouds.,0,0,93,1016
1339
+ 20231201,12:00,18:00,16,16,Passing clouds.,9,310,67,1017
1340
+ 20231201,18:00,00:00,13,12,Passing clouds.,4,110,78,1019
1341
+ 20231202,00:00,06:00,8,8,Clear.,6,100,83,1020
1342
+ 20231202,06:00,12:00,17,11,Sunny.,7,130,59,1022
1343
+ 20231202,12:00,18:00,17,14,Passing clouds.,6,200,75,1021
1344
+ 20231202,18:00,00:00,13,11,Passing clouds.,1,80,91,1022
1345
+ 20231203,00:00,06:00,11,8,Clear.,0,0,82,1022
1346
+ 20231203,06:00,12:00,19,8,Passing clouds.,5,90,66,1023
1347
+ 20231203,12:00,18:00,18,16,Scattered clouds.,17,320,61,1021
1348
+ 20231203,18:00,00:00,,,Not Available,,,,
1349
+ 20231204,00:00,06:00,,,Not Available,,,,
1350
+ 20231204,06:00,12:00,12,12,Scattered clouds.,6,0,83,1020
1351
+ 20231204,12:00,18:00,,,Not Available,,,,
1352
+ 20231204,18:00,00:00,14,12,Passing clouds.,2,20,93,1019
1353
+ 20231205,00:00,06:00,12,10,Passing clouds.,4,20,88,1018
1354
+ 20231205,06:00,12:00,19,11,Passing clouds.,1,10,62,1019
1355
+ 20231205,12:00,18:00,26,17,Passing clouds.,12,320,44,1017
1356
+ 20231205,18:00,00:00,16,13,Fog.,0,0,92,1019
1357
+ 20231206,00:00,06:00,13,11,Passing clouds.,1,40,95,1018
1358
+ 20231206,06:00,12:00,17,10,Scattered clouds.,8,190,84,1019
1359
+ 20231206,12:00,18:00,17,16,Fog.,9,170,90,1018
1360
+ 20231206,18:00,00:00,16,13,Fog.,2,80,95,1019
1361
+ 20231207,00:00,06:00,13,12,Fog.,2,110,99,1018
1362
+ 20231207,06:00,12:00,18,12,Fog.,6,140,76,1019
1363
+ 20231207,12:00,18:00,18,16,Scattered clouds.,9,260,72,1017
1364
+ 20231207,18:00,00:00,16,13,Passing clouds.,5,0,87,1018
1365
+ 20231208,00:00,06:00,12,10,Passing clouds.,4,130,93,1017
1366
+ 20231208,06:00,12:00,17,10,Passing clouds.,6,160,76,1018
1367
+ 20231208,12:00,18:00,18,15,Passing clouds.,11,320,72,1016
1368
+ 20231208,18:00,00:00,14,12,Clear.,6,340,89,1017
1369
+ 20231209,00:00,06:00,12,9,Clear.,4,0,92,1018
1370
+ 20231209,06:00,12:00,22,8,Passing clouds.,4,0,50,1022
1371
+ 20231209,12:00,18:00,22,16,Scattered clouds.,11,280,40,1021
1372
+ 20231209,18:00,00:00,14,10,Clear.,2,40,74,1022
1373
+ 20231210,00:00,06:00,10,8,Clear.,3,30,63,1021
1374
+ 20231210,06:00,12:00,21,7,Scattered clouds.,10,330,37,1021
1375
+ 20231210,12:00,18:00,21,16,Scattered clouds.,19,320,25,1017
1376
+ 20231210,18:00,00:00,16,11,Clear.,2,320,50,1017
1377
+ 20231211,00:00,06:00,11,8,Clear.,2,0,62,1015
1378
+ 20231211,06:00,12:00,17,9,Partly sunny.,3,200,55,1015
1379
+ 20231211,12:00,18:00,19,15,Partly sunny.,7,280,77,1012
1380
+ 20231211,18:00,00:00,14,12,Fog.,5,190,96,1012
1381
+ 20231212,00:00,06:00,12,10,Passing clouds.,5,100,96,1012
1382
+ 20231212,06:00,12:00,17,8,Passing clouds.,10,130,75,1013
1383
+ 20231212,12:00,18:00,17,14,Passing clouds.,13,200,76,1011
1384
+ 20231212,18:00,00:00,15,12,Passing clouds.,12,180,80,1014
1385
+ 20231213,00:00,06:00,13,12,Passing clouds.,7,110,86,1015
1386
+ 20231213,06:00,12:00,17,12,Sunny.,8,80,71,1017
1387
+ 20231213,12:00,18:00,17,14,Sunny.,12,300,70,1016
1388
+ 20231213,18:00,00:00,14,11,Clear.,2,10,90,1018
1389
+ 20231214,00:00,06:00,11,8,Clear.,4,350,94,1019
1390
+ 20231214,06:00,12:00,21,9,Scattered clouds.,4,330,52,1021
1391
+ 20231214,12:00,18:00,20,17,Scattered clouds.,16,320,44,1019
1392
+ 20231214,18:00,00:00,15,13,Clear.,7,350,53,1020
1393
+ 20231215,00:00,06:00,12,9,Clear.,4,10,70,1020
1394
+ 20231215,06:00,12:00,24,8,Sunny.,8,350,37,1020
1395
+ 20231215,12:00,18:00,24,17,Passing clouds.,12,310,28,1017
1396
+ 20231215,18:00,00:00,16,12,Clear.,3,220,66,1018
1397
+ 20231216,00:00,06:00,13,9,Clear.,7,350,52,1017
1398
+ 20231216,06:00,12:00,19,13,Passing clouds.,4,320,36,1018
1399
+ 20231216,12:00,18:00,23,17,Passing clouds.,13,320,42,1016
1400
+ 20231216,18:00,00:00,16,13,Passing clouds.,6,280,65,1017
1401
+ 20231217,00:00,06:00,13,10,Clear.,4,330,62,1016
1402
+ 20231217,06:00,12:00,21,9,Scattered clouds.,8,340,44,1016
1403
+ 20231217,12:00,18:00,21,16,Broken clouds.,4,190,51,1014
1404
+ 20231217,18:00,00:00,16,14,Passing clouds.,7,350,76,1014
1405
+ 20231218,00:00,06:00,14,11,Passing clouds.,4,100,76,1015
1406
+ 20231218,06:00,12:00,19,13,Partly sunny.,6,30,58,1016
1407
+ 20231218,12:00,18:00,21,17,Broken clouds.,7,170,49,1013
1408
+ 20231218,18:00,00:00,17,16,Partly cloudy.,4,320,65,1014
1409
+ 20231219,00:00,06:00,16,13,Passing clouds.,3,350,81,1013
1410
+ 20231219,06:00,12:00,18,13,Partly sunny.,5,140,65,1013
1411
+ 20231219,12:00,18:00,18,17,Broken clouds.,6,210,83,1012
1412
+ 20231219,18:00,00:00,17,16,Passing clouds.,6,170,93,1012
1413
+ 20231220,00:00,06:00,16,14,Passing clouds.,3,100,91,1011
1414
+ 20231220,06:00,12:00,19,13,Scattered clouds.,9,120,76,1012
1415
+ 20231220,12:00,18:00,18,17,Broken clouds.,16,160,87,1011
1416
+ 20231220,18:00,00:00,17,17,Passing clouds.,19,150,91,1014
1417
+ 20231221,00:00,06:00,16,13,Passing clouds.,9,80,89,1014
1418
+ 20231221,06:00,12:00,19,14,Broken clouds.,12,170,79,1015
1419
+ 20231221,12:00,18:00,19,17,Scattered clouds.,17,170,81,1013
1420
+ 20231221,18:00,00:00,18,15,Thunderstorms. Mostly cloudy.,10,20,80,1011
1421
+ 20231222,00:00,06:00,17,16,Partly cloudy.,12,90,91,1011
1422
+ 20231222,06:00,12:00,18,16,Partly sunny.,7,0,78,1012
1423
+ 20231222,12:00,18:00,17,15,Partly sunny.,12,300,76,1011
1424
+ 20231222,18:00,00:00,13,12,Passing clouds.,5,90,91,1014
1425
+ 20231223,00:00,06:00,12,11,Clear.,0,0,92,1015
1426
+ 20231223,06:00,12:00,17,12,Scattered clouds.,11,130,85,1017
1427
+ 20231223,12:00,18:00,17,16,Scattered clouds.,9,210,77,1017
1428
+ 20231223,18:00,00:00,14,12,Passing clouds.,1,60,92,1018
1429
+ 20231224,00:00,06:00,12,11,Clear.,2,100,96,1019
1430
+ 20231224,06:00,12:00,17,12,Passing clouds.,5,120,79,1021
1431
+ 20231224,12:00,18:00,18,16,Passing clouds.,16,300,73,1019
1432
+ 20231224,18:00,00:00,15,13,Passing clouds.,5,10,88,1020
1433
+ 20231225,00:00,06:00,13,9,Fog.,2,0,96,1021
1434
+ 20231225,06:00,12:00,18,10,Sunny.,2,320,76,1022
1435
+ 20231225,12:00,18:00,18,16,Passing clouds.,14,310,78,1020
1436
+ 20231225,18:00,00:00,16,12,Fog.,6,80,90,1021
1437
+ 20231226,00:00,06:00,12,9,Fog.,1,80,97,1020
1438
+ 20231226,06:00,12:00,17,9,Sunny.,7,340,82,1020
1439
+ 20231226,12:00,18:00,18,15,Sunny.,15,310,78,1019
1440
+ 20231226,18:00,00:00,14,12,Fog.,4,340,93,1020
1441
+ 20231227,00:00,06:00,14,13,Fog.,1,80,90,1021
1442
+ 20231227,06:00,12:00,17,12,Fog.,6,310,86,1022
1443
+ 20231227,12:00,18:00,17,16,Partly sunny.,11,320,78,1020
1444
+ 20231227,18:00,00:00,15,13,Fog.,4,330,91,1021
1445
+ 20231228,00:00,06:00,13,11,Fog.,3,90,94,1021
1446
+ 20231228,06:00,12:00,17,11,Scattered clouds.,10,310,81,1022
1447
+ 20231228,12:00,18:00,17,15,Scattered clouds.,18,320,75,1020
1448
+ 20231228,18:00,00:00,14,12,Fog.,5,340,92,1020
1449
+ 20231229,00:00,06:00,12,10,Fog.,4,70,92,1019
1450
+ 20231229,06:00,12:00,16,11,Broken clouds.,7,120,85,1021
1451
+ 20231229,12:00,18:00,17,14,Broken clouds.,7,280,80,1019
1452
+ 20231229,18:00,00:00,14,12,Fog.,1,110,90,1019
1453
+ 20231230,00:00,06:00,14,12,Mostly cloudy.,8,100,90,1019
1454
+ 20231230,06:00,12:00,16,13,Light rain. Low clouds.,10,260,88,1020
1455
+ 20231230,12:00,18:00,16,15,Scattered clouds.,13,280,76,1019
1456
+ 20231230,18:00,00:00,14,13,Passing clouds.,6,280,82,1020
1457
+ 20231231,00:00,06:00,13,12,Fog.,6,120,92,1019
1458
+ 20231231,06:00,12:00,16,13,Broken clouds.,8,90,86,1021
1459
+ 20231231,12:00,18:00,16,14,Broken clouds.,8,200,83,1018
1460
+ 20231231,18:00,00:00,14,13,Passing clouds.,5,80,90,1018
weather/san-diego/raw_data/daily_weather_2024.csv ADDED
@@ -0,0 +1,1465 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20240101,00:00,06:00,11,9,Fog.,7,90,90,1017
3
+ 20240101,06:00,12:00,16,10,Sunny.,6,90,67,1018
4
+ 20240101,12:00,18:00,17,14,Sunny.,12,300,61,1018
5
+ 20240101,18:00,00:00,14,9,Clear.,1,150,83,1020
6
+ 20240102,00:00,06:00,10,8,Clear.,4,90,80,1022
7
+ 20240102,06:00,12:00,16,8,Scattered clouds.,3,150,68,1024
8
+ 20240102,12:00,18:00,17,16,Scattered clouds.,13,280,76,1022
9
+ 20240102,18:00,00:00,15,12,Partly cloudy.,0,0,92,1023
10
+ 20240103,00:00,06:00,12,12,Partly cloudy.,7,120,91,1021
11
+ 20240103,06:00,12:00,14,12,Rain. Fog.,18,330,88,1020
12
+ 20240103,12:00,18:00,16,14,Broken clouds.,27,290,68,1017
13
+ 20240103,18:00,00:00,14,13,Passing clouds.,15,300,77,1017
14
+ 20240104,00:00,06:00,11,8,Passing clouds.,6,110,90,1018
15
+ 20240104,06:00,12:00,15,9,Scattered clouds.,6,80,74,1021
16
+ 20240104,12:00,18:00,16,13,Passing clouds.,14,310,57,1020
17
+ 20240104,18:00,00:00,13,9,Clear.,6,90,74,1021
18
+ 20240105,00:00,06:00,8,8,Clear.,3,100,76,1021
19
+ 20240105,06:00,12:00,16,8,Sunny.,3,140,58,1022
20
+ 20240105,12:00,18:00,17,14,Passing clouds.,10,180,58,1019
21
+ 20240105,18:00,00:00,13,10,Clear.,6,340,84,1020
22
+ 20240106,00:00,06:00,9,6,Clear.,5,70,75,1021
23
+ 20240106,06:00,12:00,17,7,Passing clouds.,6,100,51,1022
24
+ 20240106,12:00,18:00,17,14,Scattered clouds.,8,210,54,1018
25
+ 20240106,18:00,00:00,14,14,Passing clouds.,16,260,76,1016
26
+ 20240107,00:00,06:00,14,13,Overcast.,25,280,71,1013
27
+ 20240107,06:00,12:00,14,13,Passing clouds.,38,320,48,1013
28
+ 20240107,12:00,18:00,15,13,Passing clouds.,32,320,42,1013
29
+ 20240107,18:00,00:00,13,9,Passing clouds.,21,330,43,1016
30
+ 20240108,00:00,06:00,8,4,Clear.,4,110,67,1019
31
+ 20240108,06:00,12:00,14,4,Sunny.,5,340,49,1024
32
+ 20240108,12:00,18:00,15,13,Sunny.,18,290,33,1023
33
+ 20240108,18:00,00:00,13,8,Clear.,7,90,58,1026
34
+ 20240109,00:00,06:00,8,4,Clear.,6,90,54,1025
35
+ 20240109,06:00,12:00,15,6,Sunny.,2,190,40,1024
36
+ 20240109,12:00,18:00,16,13,Passing clouds.,7,280,50,1019
37
+ 20240109,18:00,00:00,12,8,Passing clouds.,3,110,80,1018
38
+ 20240110,00:00,06:00,9,7,Passing clouds.,2,110,69,1017
39
+ 20240110,06:00,12:00,16,8,Partly sunny.,7,120,64,1017
40
+ 20240110,12:00,18:00,16,13,Partly sunny.,11,270,71,1015
41
+ 20240110,18:00,00:00,14,13,Passing clouds.,17,280,71,1015
42
+ 20240111,00:00,06:00,14,12,Passing clouds.,32,290,76,1015
43
+ 20240111,06:00,12:00,17,13,Passing clouds.,24,280,63,1016
44
+ 20240111,12:00,18:00,17,13,Scattered clouds.,18,300,43,1017
45
+ 20240111,18:00,00:00,12,8,Passing clouds.,6,10,61,1020
46
+ 20240112,00:00,06:00,7,5,Passing clouds.,5,90,74,1021
47
+ 20240112,06:00,12:00,15,5,Sunny.,3,90,58,1023
48
+ 20240112,12:00,18:00,17,13,Passing clouds.,13,310,47,1020
49
+ 20240112,18:00,00:00,12,8,Clear.,3,70,72,1020
50
+ 20240113,00:00,06:00,8,6,Clear.,2,90,68,1019
51
+ 20240113,06:00,12:00,15,6,Passing clouds.,2,200,60,1019
52
+ 20240113,12:00,18:00,16,13,Passing clouds.,9,300,66,1018
53
+ 20240113,18:00,00:00,12,8,Clear.,2,130,88,1018
54
+ 20240114,00:00,06:00,9,8,Passing clouds.,2,140,86,1017
55
+ 20240114,06:00,12:00,16,9,Partly sunny.,6,150,69,1018
56
+ 20240114,12:00,18:00,15,13,Partly sunny.,5,160,74,1016
57
+ 20240114,18:00,00:00,12,9,Passing clouds.,0,0,88,1017
58
+ 20240115,00:00,06:00,9,8,Clear.,3,80,89,1017
59
+ 20240115,06:00,12:00,14,8,Sunny.,1,210,84,1018
60
+ 20240115,12:00,18:00,16,14,Sunny.,14,290,77,1017
61
+ 20240115,18:00,00:00,13,11,Passing clouds.,6,330,92,1018
62
+ 20240116,00:00,06:00,11,10,Fog.,8,10,95,1018
63
+ 20240116,06:00,12:00,17,11,Fog.,10,20,91,1019
64
+ 20240116,12:00,18:00,18,14,Scattered clouds.,12,290,78,1017
65
+ 20240116,18:00,00:00,14,14,Passing clouds.,5,340,84,1018
66
+ 20240117,00:00,06:00,14,13,Overcast.,6,10,82,1017
67
+ 20240117,06:00,12:00,16,12,Broken clouds.,6,80,79,1018
68
+ 20240117,12:00,18:00,17,15,Partly sunny.,11,270,72,1017
69
+ 20240117,18:00,00:00,15,14,Passing clouds.,3,250,81,1018
70
+ 20240118,00:00,06:00,14,11,Passing clouds.,6,80,88,1018
71
+ 20240118,06:00,12:00,17,12,Scattered clouds.,8,340,80,1019
72
+ 20240118,12:00,18:00,18,16,Scattered clouds.,16,310,70,1017
73
+ 20240118,18:00,00:00,15,13,Passing clouds.,5,10,87,1018
74
+ 20240119,00:00,06:00,13,11,Passing clouds.,4,30,92,1017
75
+ 20240119,06:00,12:00,18,11,Partly sunny.,7,320,75,1017
76
+ 20240119,12:00,18:00,19,16,Sunny.,9,280,67,1015
77
+ 20240119,18:00,00:00,16,14,Fog.,0,0,90,1015
78
+ 20240120,00:00,06:00,13,13,Fog.,7,100,93,1014
79
+ 20240120,06:00,12:00,16,13,Partly sunny.,11,140,87,1015
80
+ 20240120,12:00,18:00,16,14,Rain. Fog.,16,170,91,1012
81
+ 20240120,18:00,00:00,16,15,Mostly cloudy.,18,150,87,1012
82
+ 20240121,00:00,06:00,,,Not Available,,,,
83
+ 20240121,06:00,12:00,17,14,Light rain. Fog.,6,170,89,1013
84
+ 20240121,12:00,18:00,16,14,Partly sunny.,11,150,88,1013
85
+ 20240121,18:00,00:00,14,13,Partly cloudy.,12,160,96,1013
86
+ 20240122,00:00,06:00,15,13,Mostly cloudy.,24,150,95,1011
87
+ 20240122,06:00,12:00,18,15,Heavy rain. Fog.,22,130,93,1008
88
+ 20240122,12:00,18:00,17,15,Fog.,15,240,95,1007
89
+ 20240122,18:00,00:00,16,15,Mostly cloudy.,19,280,93,1009
90
+ 20240123,00:00,06:00,15,14,Partly cloudy.,17,280,90,1011
91
+ 20240123,06:00,12:00,17,14,Partly sunny.,8,300,86,1013
92
+ 20240123,12:00,18:00,17,15,Scattered clouds.,13,260,79,1014
93
+ 20240123,18:00,00:00,15,14,Fog.,9,170,86,1017
94
+ 20240124,00:00,06:00,14,13,Passing clouds.,5,100,90,1019
95
+ 20240124,06:00,12:00,16,14,Broken clouds.,7,130,80,1020
96
+ 20240124,12:00,18:00,16,14,Cloudy.,9,200,80,1020
97
+ 20240124,18:00,00:00,14,14,Passing clouds.,1,230,86,1021
98
+ 20240125,00:00,06:00,14,14,Passing clouds.,9,170,85,1020
99
+ 20240125,06:00,12:00,16,14,Fog.,10,180,91,1021
100
+ 20240125,12:00,18:00,16,14,Broken clouds.,9,210,86,1020
101
+ 20240125,18:00,00:00,16,14,Passing clouds.,7,350,84,1021
102
+ 20240126,00:00,06:00,13,11,Passing clouds.,5,20,91,1021
103
+ 20240126,06:00,12:00,17,11,Scattered clouds.,11,320,82,1022
104
+ 20240126,12:00,18:00,18,16,Scattered clouds.,17,320,71,1021
105
+ 20240126,18:00,00:00,14,12,Fog.,2,290,80,1023
106
+ 20240127,00:00,06:00,12,9,Clear.,2,320,88,1022
107
+ 20240127,06:00,12:00,22,9,Scattered clouds.,3,340,66,1022
108
+ 20240127,12:00,18:00,22,18,Scattered clouds.,10,270,30,1019
109
+ 20240127,18:00,00:00,17,12,Passing clouds.,6,330,56,1020
110
+ 20240128,00:00,06:00,13,10,Clear.,5,320,74,1018
111
+ 20240128,06:00,12:00,23,11,Partly sunny.,6,340,55,1020
112
+ 20240128,12:00,18:00,23,19,Partly sunny.,16,320,29,1018
113
+ 20240128,18:00,00:00,20,13,Passing clouds.,3,280,59,1020
114
+ 20240129,00:00,06:00,12,11,Clear.,2,0,69,1019
115
+ 20240129,06:00,12:00,23,11,Passing clouds.,4,310,45,1020
116
+ 20240129,12:00,18:00,23,18,Sunny.,9,300,34,1017
117
+ 20240129,18:00,00:00,14,12,Clear.,2,190,87,1019
118
+ 20240130,00:00,06:00,12,10,Clear.,1,70,76,1017
119
+ 20240130,06:00,12:00,21,9,Passing clouds.,4,340,50,1018
120
+ 20240130,12:00,18:00,21,17,Scattered clouds.,9,280,49,1016
121
+ 20240130,18:00,00:00,16,13,Passing clouds.,2,0,88,1016
122
+ 20240131,00:00,06:00,14,13,Fog.,3,330,95,1015
123
+ 20240131,06:00,12:00,16,13,Broken clouds.,8,0,83,1016
124
+ 20240131,12:00,18:00,17,14,Scattered clouds.,10,180,84,1014
125
+ 20240131,18:00,00:00,14,12,Passing clouds.,11,180,91,1014
126
+ 20240201,00:00,06:00,14,12,Passing clouds.,16,100,84,1012
127
+ 20240201,06:00,12:00,14,13,Rain. Fog.,34,130,93,1009
128
+ 20240201,12:00,18:00,16,13,Mostly cloudy.,26,190,95,1007
129
+ 20240201,18:00,00:00,14,12,Partly cloudy.,17,290,81,721
130
+ 20240202,00:00,06:00,14,14,Passing clouds.,19,280,75,506
131
+ 20240202,06:00,12:00,16,13,Broken clouds.,17,260,70,1014
132
+ 20240202,12:00,18:00,16,14,Broken clouds.,21,300,68,1015
133
+ 20240202,18:00,00:00,14,13,Passing clouds.,18,300,70,1017
134
+ 20240203,00:00,06:00,13,10,Passing clouds.,14,300,71,1017
135
+ 20240203,06:00,12:00,15,9,Scattered clouds.,9,100,74,1018
136
+ 20240203,12:00,18:00,16,14,Partly sunny.,10,270,62,1016
137
+ 20240203,18:00,00:00,14,13,Passing clouds.,6,270,68,1017
138
+ 20240204,00:00,06:00,13,9,Clear.,11,90,78,1015
139
+ 20240204,06:00,12:00,16,10,Passing clouds.,18,100,76,1016
140
+ 20240204,12:00,18:00,17,16,Scattered clouds.,30,160,75,1015
141
+ 20240204,18:00,00:00,16,15,Passing clouds.,26,140,71,1015
142
+ 20240205,00:00,06:00,16,16,Overcast.,21,140,68,1013
143
+ 20240205,06:00,12:00,16,16,Overcast.,21,160,72,1013
144
+ 20240205,12:00,18:00,14,13,Light rain. Fog.,17,170,96,1010
145
+ 20240205,18:00,00:00,13,12,Light rain. Fog.,17,330,96,1009
146
+ 20240206,00:00,06:00,12,12,Rain. Overcast.,14,120,95,1007
147
+ 20240206,06:00,12:00,13,12,Broken clouds.,24,150,90,1006
148
+ 20240206,12:00,18:00,15,12,Broken clouds.,18,180,84,1005
149
+ 20240206,18:00,00:00,13,12,Partly cloudy.,16,280,77,1008
150
+ 20240207,00:00,06:00,13,12,Partly cloudy.,17,250,75,1010
151
+ 20240207,06:00,12:00,15,11,Broken clouds.,12,120,82,1014
152
+ 20240207,12:00,18:00,16,13,Broken clouds.,17,280,65,1015
153
+ 20240207,18:00,00:00,14,13,Passing clouds.,23,190,76,1015
154
+ 20240208,00:00,06:00,13,11,Partly cloudy.,24,270,79,1015
155
+ 20240208,06:00,12:00,14,12,Scattered clouds.,21,270,62,1018
156
+ 20240208,12:00,18:00,14,12,Scattered clouds.,19,280,65,1018
157
+ 20240208,18:00,00:00,12,12,Passing clouds.,8,260,76,1019
158
+ 20240209,00:00,06:00,11,10,Partly cloudy.,6,100,89,1018
159
+ 20240209,06:00,12:00,13,9,Passing clouds.,10,100,85,1019
160
+ 20240209,12:00,18:00,14,12,Broken clouds.,12,250,73,1016
161
+ 20240209,18:00,00:00,12,11,Passing clouds.,7,90,84,1016
162
+ 20240210,00:00,06:00,10,8,Passing clouds.,4,80,87,1015
163
+ 20240210,06:00,12:00,15,8,Passing clouds.,6,190,74,1017
164
+ 20240210,12:00,18:00,16,14,Passing clouds.,21,290,58,1017
165
+ 20240210,18:00,00:00,13,9,Passing clouds.,9,90,73,1020
166
+ 20240211,00:00,06:00,9,7,Clear.,5,80,76,1021
167
+ 20240211,06:00,12:00,16,7,Sunny.,5,80,50,1023
168
+ 20240211,12:00,18:00,17,14,Sunny.,17,270,56,1021
169
+ 20240211,18:00,00:00,13,10,Clear.,4,340,79,1022
170
+ 20240212,00:00,06:00,9,6,Clear.,4,80,75,1020
171
+ 20240212,06:00,12:00,16,7,Sunny.,3,320,56,1020
172
+ 20240212,12:00,18:00,17,14,Sunny.,20,320,53,1017
173
+ 20240212,18:00,00:00,13,10,Clear.,2,0,86,1017
174
+ 20240213,00:00,06:00,9,7,Passing clouds.,3,100,80,1016
175
+ 20240213,06:00,12:00,16,7,Scattered clouds.,3,150,63,1017
176
+ 20240213,12:00,18:00,15,10,Passing clouds.,15,280,81,1016
177
+ 20240213,18:00,00:00,13,11,Passing clouds.,3,100,84,1018
178
+ 20240214,00:00,06:00,12,8,Passing clouds.,4,90,87,1019
179
+ 20240214,06:00,12:00,14,3,Scattered clouds.,8,180,79,1021
180
+ 20240214,12:00,18:00,16,14,Passing clouds.,19,300,64,1020
181
+ 20240214,18:00,00:00,14,12,Passing clouds.,6,320,74,1021
182
+ 20240215,00:00,06:00,13,12,Passing clouds.,4,80,80,1022
183
+ 20240215,06:00,12:00,17,13,Scattered clouds.,15,320,70,1022
184
+ 20240215,12:00,18:00,18,16,Partly sunny.,24,320,64,1020
185
+ 20240215,18:00,00:00,15,14,Passing clouds.,11,290,83,1020
186
+ 20240216,00:00,06:00,16,14,Passing clouds.,4,340,78,1019
187
+ 20240216,06:00,12:00,17,14,Partly sunny.,9,0,73,1020
188
+ 20240216,12:00,18:00,17,15,Partly sunny.,20,310,73,1018
189
+ 20240216,18:00,00:00,14,-9,Low clouds.,8,260,59,1019
190
+ 20240217,00:00,06:00,-8,-38,Low clouds.,7,330,0,1018
191
+ 20240217,06:00,12:00,17,14,Overcast.,4,0,76,1019
192
+ 20240217,12:00,18:00,17,14,Overcast.,14,280,72,1018
193
+ 20240217,18:00,00:00,14,-36,Passing clouds.,4,320,68,1019
194
+ 20240218,00:00,06:00,-35,-39,Overcast.,4,350,0,1018
195
+ 20240218,06:00,12:00,16,-38,Partly sunny.,2,40,64,1019
196
+ 20240218,12:00,18:00,18,17,Scattered clouds.,14,280,65,1017
197
+ 20240218,18:00,00:00,16,-45,Ice fog.,5,170,57,1017
198
+ 20240219,00:00,06:00,-53,-53,Clear.,9,90,0,1018
199
+ 20240219,06:00,12:00,-56,-56,Partly sunny.,20,170,0,1020
200
+ 20240219,12:00,18:00,-31,-52,Sunny.,15,190,0,1019
201
+ 20240219,18:00,00:00,17,-39,Mostly cloudy.,6,140,16,1021
202
+ 20240220,00:00,06:00,17,16,Mostly cloudy.,13,170,69,1019
203
+ 20240220,06:00,12:00,18,16,Mostly cloudy.,12,200,79,1021
204
+ 20240220,12:00,18:00,16,14,Light rain. Fog.,9,60,89,1020
205
+ 20240220,18:00,00:00,16,15,Mostly cloudy.,10,290,87,1019
206
+ 20240221,00:00,06:00,15,13,Partly cloudy.,5,260,91,1018
207
+ 20240221,06:00,12:00,20,13,Broken clouds.,7,170,85,1021
208
+ 20240221,12:00,18:00,20,17,Scattered clouds.,16,290,67,1021
209
+ 20240221,18:00,00:00,16,13,Passing clouds.,8,310,88,1022
210
+ 20240222,00:00,06:00,13,13,Partly cloudy.,3,60,88,1022
211
+ 20240222,06:00,12:00,18,13,Passing clouds.,6,290,68,1023
212
+ 20240222,12:00,18:00,19,17,Scattered clouds.,23,320,68,1020
213
+ 20240222,18:00,00:00,16,14,Passing clouds.,10,0,85,1021
214
+ 20240223,00:00,06:00,13,11,Passing clouds.,3,0,92,1018
215
+ 20240223,06:00,12:00,20,11,Partly sunny.,6,310,69,1018
216
+ 20240223,12:00,18:00,22,18,Scattered clouds.,16,320,51,1015
217
+ 20240223,18:00,00:00,17,16,Passing clouds.,3,170,82,1017
218
+ 20240224,00:00,06:00,,,Not Available,,,,
219
+ 20240224,06:00,12:00,20,-58,Partly sunny.,4,320,38,1018
220
+ 20240224,12:00,18:00,23,18,Partly sunny.,10,320,50,1016
221
+ 20240224,18:00,00:00,17,-21,Passing clouds.,6,0,70,1017
222
+ 20240225,00:00,06:00,-56,-56,Clear.,6,0,0,1017
223
+ 20240225,06:00,12:00,18,12,Partly sunny.,8,290,82,1018
224
+ 20240225,12:00,18:00,18,16,Partly sunny.,11,300,76,1017
225
+ 20240225,18:00,00:00,15,15,Passing clouds.,11,320,89,1017
226
+ 20240226,00:00,06:00,13,13,Passing clouds.,9,10,93,1016
227
+ 20240226,06:00,12:00,17,16,Partly sunny.,9,330,80,1017
228
+ 20240226,12:00,18:00,17,16,Overcast.,14,310,75,1015
229
+ 20240226,18:00,00:00,17,16,Mostly cloudy.,5,180,80,1015
230
+ 20240227,00:00,06:00,16,15,Partly cloudy.,7,210,84,1015
231
+ 20240227,06:00,12:00,19,15,Broken clouds.,10,130,70,1016
232
+ 20240227,12:00,18:00,19,16,Scattered clouds.,17,260,64,1014
233
+ 20240227,18:00,00:00,16,9,Passing clouds.,10,330,70,1016
234
+ 20240228,00:00,06:00,14,13,Passing clouds.,1,80,91,1016
235
+ 20240228,06:00,12:00,18,14,Partly sunny.,9,30,79,1017
236
+ 20240228,12:00,18:00,18,16,Scattered clouds.,15,290,74,1017
237
+ 20240228,18:00,00:00,15,15,Overcast.,6,190,82,1018
238
+ 20240229,00:00,06:00,16,15,Overcast.,6,130,78,1020
239
+ 20240229,06:00,12:00,17,16,Broken clouds.,6,180,70,1022
240
+ 20240229,12:00,18:00,19,16,Partly sunny.,12,250,61,1021
241
+ 20240229,18:00,00:00,16,16,Passing clouds.,9,290,73,1021
242
+ 20240301,00:00,06:00,16,15,Passing clouds.,8,290,71,1021
243
+ 20240301,06:00,12:00,18,15,Scattered clouds.,9,290,61,1021
244
+ 20240301,12:00,18:00,18,17,Scattered clouds.,17,260,59,1019
245
+ 20240301,18:00,00:00,16,-34,Passing clouds.,7,240,46,1020
246
+ 20240302,00:00,06:00,-59,-61,Mostly cloudy.,27,170,0,1018
247
+ 20240302,06:00,12:00,16,14,Broken clouds.,26,170,91,1019
248
+ 20240302,12:00,18:00,19,16,Broken clouds.,15,230,76,1017
249
+ 20240302,18:00,00:00,16,16,Passing clouds.,12,270,76,1018
250
+ 20240303,00:00,06:00,,,Not Available,,,,
251
+ 20240303,06:00,12:00,19,13,Scattered clouds.,15,300,70,1019
252
+ 20240303,12:00,18:00,18,16,Partly sunny.,17,280,69,1017
253
+ 20240303,18:00,00:00,14,3,Passing clouds.,13,280,63,1019
254
+ 20240304,00:00,06:00,13,-6,Passing clouds.,10,300,55,1019
255
+ 20240304,06:00,12:00,16,13,Scattered clouds.,12,120,79,1020
256
+ 20240304,12:00,18:00,16,14,Scattered clouds.,19,280,65,1019
257
+ 20240304,18:00,00:00,14,13,Passing clouds.,7,300,73,1019
258
+ 20240305,00:00,06:00,14,8,Passing clouds.,7,80,78,1018
259
+ 20240305,06:00,12:00,19,14,Scattered clouds.,11,110,63,1019
260
+ 20240305,12:00,18:00,14,11,Scattered clouds.,13,250,84,1016
261
+ 20240305,18:00,00:00,14,13,Partly cloudy.,6,340,74,1016
262
+ 20240306,00:00,06:00,14,13,Passing clouds.,7,90,76,1015
263
+ 20240306,06:00,12:00,18,14,Scattered clouds.,10,100,62,1014
264
+ 20240306,12:00,18:00,18,8,Partly sunny.,20,200,55,1012
265
+ 20240306,18:00,00:00,16,13,Passing clouds.,22,230,84,1010
266
+ 20240307,00:00,06:00,14,13,Partly cloudy.,8,210,86,1010
267
+ 20240307,06:00,12:00,16,13,Broken clouds.,10,270,81,1013
268
+ 20240307,12:00,18:00,19,16,Scattered clouds.,18,270,64,1014
269
+ 20240307,18:00,00:00,16,14,Passing clouds.,9,280,77,1016
270
+ 20240308,00:00,06:00,14,13,Passing clouds.,7,90,81,1018
271
+ 20240308,06:00,12:00,17,14,Passing clouds.,9,80,70,1020
272
+ 20240308,12:00,18:00,18,17,Passing clouds.,20,310,63,1019
273
+ 20240308,18:00,00:00,16,-59,Passing clouds.,12,20,50,1020
274
+ 20240309,00:00,06:00,-59,-62,Clear.,3,290,0,1020
275
+ 20240309,06:00,12:00,18,-61,Scattered clouds.,4,330,51,1020
276
+ 20240309,12:00,18:00,20,16,Passing clouds.,18,300,67,1018
277
+ 20240309,18:00,00:00,16,15,Passing clouds.,10,340,81,1019
278
+ 20240310,00:00,06:00,-59,-62,Passing clouds.,1,70,0,1019
279
+ 20240310,06:00,12:00,19,12,Scattered clouds.,6,310,68,1019
280
+ 20240310,12:00,18:00,20,17,Scattered clouds.,18,300,62,1017
281
+ 20240310,18:00,00:00,16,15,Passing clouds.,6,270,77,1018
282
+ 20240311,00:00,06:00,-28,-28,Partly cloudy.,0,0,100,1018
283
+ 20240311,06:00,12:00,17,-28,Partly sunny.,8,100,18,1019
284
+ 20240311,12:00,18:00,17,16,Broken clouds.,18,280,64,1019
285
+ 20240311,18:00,00:00,16,14,Passing clouds.,8,310,71,1019
286
+ 20240312,00:00,06:00,14,13,Passing clouds.,4,110,86,1020
287
+ 20240312,06:00,12:00,17,13,Broken clouds.,7,150,76,1021
288
+ 20240312,12:00,18:00,18,16,Scattered clouds.,14,260,61,1019
289
+ 20240312,18:00,00:00,16,14,Passing clouds.,6,290,76,1019
290
+ 20240313,00:00,06:00,15,14,Overcast.,9,150,81,1017
291
+ 20240313,06:00,12:00,17,-56,Partly sunny.,13,130,37,1017
292
+ 20240313,12:00,18:00,18,17,Broken clouds.,16,270,69,1014
293
+ 20240313,18:00,00:00,16,14,Passing clouds.,9,310,76,1013
294
+ 20240314,00:00,06:00,14,12,Passing clouds.,5,0,88,1011
295
+ 20240314,06:00,12:00,17,12,Partly sunny.,2,160,84,1010
296
+ 20240314,12:00,18:00,19,17,Broken clouds.,16,60,56,1008
297
+ 20240314,18:00,00:00,17,12,Passing clouds.,10,130,48,1008
298
+ 20240315,00:00,06:00,14,12,Partly cloudy.,12,170,70,1008
299
+ 20240315,06:00,12:00,17,11,Broken clouds.,11,110,68,1010
300
+ 20240315,12:00,18:00,18,16,Scattered clouds.,21,190,60,1011
301
+ 20240315,18:00,00:00,17,-15,Partly cloudy.,7,90,53,1014
302
+ 20240316,00:00,06:00,-2,-21,Clear.,6,90,0,1015
303
+ 20240316,06:00,12:00,17,12,Scattered clouds.,8,120,63,1017
304
+ 20240316,12:00,18:00,19,18,Scattered clouds.,15,280,62,1016
305
+ 20240316,18:00,00:00,17,-56,Passing clouds.,7,310,57,1018
306
+ 20240317,00:00,06:00,-58,-62,Passing clouds.,3,300,0,1019
307
+ 20240317,06:00,12:00,12,-61,Sunny.,7,190,26,1019
308
+ 20240317,12:00,18:00,18,17,Scattered clouds.,20,290,63,1017
309
+ 20240317,18:00,00:00,16,15,Passing clouds.,14,330,76,1017
310
+ 20240318,00:00,06:00,11,11,Clear.,0,0,89,1016
311
+ 20240318,06:00,12:00,18,11,Scattered clouds.,8,0,75,1017
312
+ 20240318,12:00,18:00,20,17,Broken clouds.,19,90,67,1016
313
+ 20240318,18:00,00:00,17,15,Passing clouds.,7,270,75,1017
314
+ 20240319,00:00,06:00,15,12,Passing clouds.,4,70,76,1017
315
+ 20240319,06:00,12:00,19,13,Scattered clouds.,6,50,63,1017
316
+ 20240319,12:00,18:00,20,18,Scattered clouds.,15,280,68,1016
317
+ 20240319,18:00,00:00,17,16,Passing clouds.,6,330,80,1016
318
+ 20240320,00:00,06:00,15,13,Passing clouds.,5,340,92,1016
319
+ 20240320,06:00,12:00,18,13,Partly sunny.,5,290,80,1016
320
+ 20240320,12:00,18:00,20,18,Passing clouds.,13,220,67,1016
321
+ 20240320,18:00,00:00,17,15,Passing clouds.,4,210,75,1017
322
+ 20240321,00:00,06:00,16,14,Passing clouds.,4,100,82,1017
323
+ 20240321,06:00,12:00,18,16,Passing clouds.,8,80,69,1019
324
+ 20240321,12:00,18:00,19,18,Passing clouds.,16,280,66,1018
325
+ 20240321,18:00,00:00,17,15,Passing clouds.,11,320,81,1019
326
+ 20240322,00:00,06:00,15,14,Fog.,3,110,88,1018
327
+ 20240322,06:00,12:00,17,14,Scattered clouds.,8,280,77,1019
328
+ 20240322,12:00,18:00,18,17,Partly sunny.,15,290,69,1017
329
+ 20240322,18:00,00:00,17,16,Passing clouds.,12,310,77,1016
330
+ 20240323,00:00,06:00,,,Not Available,,,,
331
+ 20240323,06:00,12:00,19,16,Broken clouds.,17,180,73,1014
332
+ 20240323,12:00,18:00,18,14,Light rain. Broken clouds.,23,290,77,1012
333
+ 20240323,18:00,00:00,15,-57,Passing clouds.,24,290,51,1012
334
+ 20240324,00:00,06:00,-17,-55,Partly cloudy.,33,280,0,1010
335
+ 20240324,06:00,12:00,15,14,Broken clouds.,33,300,67,1011
336
+ 20240324,12:00,18:00,16,15,Broken clouds.,34,300,61,1010
337
+ 20240324,18:00,00:00,14,13,Passing clouds.,35,290,70,1010
338
+ 20240325,00:00,06:00,11,-59,Clear.,7,100,30,1012
339
+ 20240325,06:00,12:00,16,13,Scattered clouds.,13,180,77,1014
340
+ 20240325,12:00,18:00,17,17,Broken clouds.,14,210,65,1014
341
+ 20240325,18:00,00:00,16,14,Partly cloudy.,14,260,71,1016
342
+ 20240326,00:00,06:00,14,14,Partly cloudy.,10,240,72,1016
343
+ 20240326,06:00,12:00,17,14,Partly sunny.,10,210,70,1018
344
+ 20240326,12:00,18:00,17,16,Scattered clouds.,15,200,65,1018
345
+ 20240326,18:00,00:00,16,14,Passing clouds.,2,220,64,1019
346
+ 20240327,00:00,06:00,13,11,Clear.,1,90,81,1020
347
+ 20240327,06:00,12:00,18,11,Scattered clouds.,6,150,74,1022
348
+ 20240327,12:00,18:00,19,18,Scattered clouds.,16,280,61,1021
349
+ 20240327,18:00,00:00,17,14,Passing clouds.,6,280,80,1020
350
+ 20240328,00:00,06:00,14,13,Passing clouds.,8,0,83,1019
351
+ 20240328,06:00,12:00,16,14,Partly sunny.,11,350,71,1019
352
+ 20240328,12:00,18:00,18,16,Scattered clouds.,23,320,64,1017
353
+ 20240328,18:00,00:00,16,14,Passing clouds.,16,330,77,1016
354
+ 20240329,00:00,06:00,14,12,Passing clouds.,8,290,77,1015
355
+ 20240329,06:00,12:00,17,13,Partly sunny.,7,120,70,1015
356
+ 20240329,12:00,18:00,19,17,Scattered clouds.,13,170,56,1014
357
+ 20240329,18:00,00:00,16,-47,Passing clouds.,13,180,55,1012
358
+ 20240330,00:00,06:00,14,-61,Mostly cloudy.,25,140,47,1009
359
+ 20240330,06:00,12:00,16,12,Light rain. Fog.,26,160,87,1008
360
+ 20240330,12:00,18:00,16,12,Partly sunny.,18,90,81,1009
361
+ 20240330,18:00,00:00,15,14,Rain. Mostly cloudy.,19,140,64,1008
362
+ 20240331,00:00,06:00,,,Not Available,,,,
363
+ 20240331,06:00,12:00,16,13,Broken clouds.,25,140,88,1009
364
+ 20240331,12:00,18:00,17,16,Broken clouds.,30,180,80,1008
365
+ 20240331,18:00,00:00,14,14,Partly cloudy.,16,150,77,1008
366
+ 20240401,00:00,06:00,12,12,Passing clouds.,0,0,83,1011
367
+ 20240401,06:00,12:00,17,12,Scattered clouds.,11,350,76,1014
368
+ 20240401,12:00,18:00,19,-23,Passing clouds.,22,300,40,1016
369
+ 20240401,18:00,00:00,16,14,Passing clouds.,9,320,77,1020
370
+ 20240402,00:00,06:00,13,11,Clear.,3,100,87,1021
371
+ 20240402,06:00,12:00,19,11,Sunny.,6,170,73,1024
372
+ 20240402,12:00,18:00,21,18,Passing clouds.,14,290,56,1023
373
+ 20240402,18:00,00:00,18,16,Clear.,12,320,77,1024
374
+ 20240403,00:00,06:00,15,12,Clear.,5,10,88,1023
375
+ 20240403,06:00,12:00,18,-29,Sunny.,12,200,23,1021
376
+ 20240403,12:00,18:00,19,18,Passing clouds.,15,290,62,1019
377
+ 20240403,18:00,00:00,16,14,Passing clouds.,9,310,81,1017
378
+ 20240404,00:00,06:00,14,14,Passing clouds.,6,270,81,1014
379
+ 20240404,06:00,12:00,18,14,Partly sunny.,9,180,71,1014
380
+ 20240404,12:00,18:00,20,14,Broken clouds.,19,270,65,1013
381
+ 20240404,18:00,00:00,16,12,Mostly cloudy.,22,300,72,1014
382
+ 20240405,00:00,06:00,13,12,Passing clouds.,19,270,66,1014
383
+ 20240405,06:00,12:00,13,11,Broken clouds.,19,320,72,1016
384
+ 20240405,12:00,18:00,14,13,Broken clouds.,23,290,60,1016
385
+ 20240405,18:00,00:00,12,12,Passing clouds.,30,300,61,1018
386
+ 20240406,00:00,06:00,12,9,Passing clouds.,19,310,69,1021
387
+ 20240406,06:00,12:00,14,9,Scattered clouds.,11,90,72,1024
388
+ 20240406,12:00,18:00,15,14,Passing clouds.,16,230,56,1023
389
+ 20240406,18:00,00:00,13,12,Clear.,9,320,63,1022
390
+ 20240407,00:00,06:00,11,8,Clear.,1,90,86,1020
391
+ 20240407,06:00,12:00,16,8,Sunny.,8,100,76,1020
392
+ 20240407,12:00,18:00,16,14,Passing clouds.,17,280,61,1017
393
+ 20240407,18:00,00:00,14,12,Passing clouds.,8,300,79,1016
394
+ 20240408,00:00,06:00,12,11,Passing clouds.,11,120,90,1014
395
+ 20240408,06:00,12:00,15,10,Sunny.,10,90,72,1015
396
+ 20240408,12:00,18:00,17,16,Passing clouds.,21,300,60,1014
397
+ 20240408,18:00,00:00,15,14,Clear.,4,330,79,1016
398
+ 20240409,00:00,06:00,13,10,Clear.,5,90,77,1016
399
+ 20240409,06:00,12:00,20,11,Sunny.,8,0,62,1018
400
+ 20240409,12:00,18:00,22,20,Sunny.,19,320,48,1017
401
+ 20240409,18:00,00:00,21,14,Clear.,8,330,46,1018
402
+ 20240410,00:00,06:00,14,12,Clear.,1,320,76,1017
403
+ 20240410,06:00,12:00,21,11,Sunny.,4,180,53,1018
404
+ 20240410,12:00,18:00,20,18,Sunny.,13,290,67,1016
405
+ 20240410,18:00,00:00,17,15,Passing clouds.,6,270,94,1016
406
+ 20240411,00:00,06:00,14,14,Fog.,6,260,100,1014
407
+ 20240411,06:00,12:00,18,14,Fog.,10,300,88,1013
408
+ 20240411,12:00,18:00,18,16,Passing clouds.,15,290,84,1011
409
+ 20240411,18:00,00:00,16,13,Passing clouds.,6,300,95,1011
410
+ 20240412,00:00,06:00,14,13,Passing clouds.,7,210,98,1011
411
+ 20240412,06:00,12:00,14,-49,Overcast.,14,180,53,1012
412
+ 20240412,12:00,18:00,17,15,Partly sunny.,13,170,71,1015
413
+ 20240412,18:00,00:00,17,-61,Passing clouds.,11,170,44,1016
414
+ 20240413,00:00,06:00,14,-61,Overcast.,11,140,14,1017
415
+ 20240413,06:00,12:00,19,-4,Overcast.,10,170,42,1018
416
+ 20240413,12:00,18:00,21,18,Overcast.,18,190,57,1018
417
+ 20240413,18:00,00:00,17,-7,Mostly cloudy.,22,180,57,1018
418
+ 20240414,00:00,06:00,-7,-19,Clear.,9,340,0,1020
419
+ 20240414,06:00,12:00,16,-20,Passing clouds.,5,200,60,1022
420
+ 20240414,12:00,18:00,20,15,Broken clouds.,14,250,59,1021
421
+ 20240414,18:00,00:00,17,13,Passing clouds.,9,180,78,1019
422
+ 20240415,00:00,06:00,14,13,Overcast.,7,270,88,1018
423
+ 20240415,06:00,12:00,16,14,Scattered clouds.,9,280,74,1020
424
+ 20240415,12:00,18:00,18,17,Sunny.,25,320,61,1017
425
+ 20240415,18:00,00:00,16,14,Passing clouds.,17,340,87,1017
426
+ 20240416,00:00,06:00,16,12,Passing clouds.,1,80,95,1017
427
+ 20240416,06:00,12:00,19,11,Passing clouds.,7,80,85,1017
428
+ 20240416,12:00,18:00,20,19,Sunny.,17,310,64,1015
429
+ 20240416,18:00,00:00,17,14,Clear.,6,280,85,1016
430
+ 20240417,00:00,06:00,14,13,Passing clouds.,4,330,94,1016
431
+ 20240417,06:00,12:00,18,13,Sunny.,9,20,83,1016
432
+ 20240417,12:00,18:00,19,17,Scattered clouds.,13,280,74,1015
433
+ 20240417,18:00,00:00,16,13,Fog.,4,270,94,1015
434
+ 20240418,00:00,06:00,14,13,Passing clouds.,6,200,88,1015
435
+ 20240418,06:00,12:00,20,14,Partly sunny.,11,260,76,1015
436
+ 20240418,12:00,18:00,18,16,Scattered clouds.,15,200,76,1015
437
+ 20240418,18:00,00:00,16,15,Overcast.,5,210,85,1015
438
+ 20240419,00:00,06:00,16,15,Passing clouds.,5,210,79,1014
439
+ 20240419,06:00,12:00,17,15,Overcast.,10,210,71,1015
440
+ 20240419,12:00,18:00,18,17,Scattered clouds.,14,270,68,1014
441
+ 20240419,18:00,00:00,16,15,Overcast.,10,270,79,1015
442
+ 20240420,00:00,06:00,15,14,Overcast.,8,270,79,1015
443
+ 20240420,06:00,12:00,18,15,Overcast.,9,0,70,847
444
+ 20240420,12:00,18:00,18,17,Scattered clouds.,19,290,69,846
445
+ 20240420,18:00,00:00,17,16,Overcast.,8,290,87,1016
446
+ 20240421,00:00,06:00,16,15,Overcast.,7,310,88,1015
447
+ 20240421,06:00,12:00,17,15,Overcast.,9,290,89,1015
448
+ 20240421,12:00,18:00,18,16,Partly sunny.,13,270,85,1014
449
+ 20240421,18:00,00:00,16,15,Low clouds.,7,290,97,1014
450
+ 20240422,00:00,06:00,16,14,Low clouds.,9,280,99,1012
451
+ 20240422,06:00,12:00,16,14,Fog.,8,210,98,1013
452
+ 20240422,12:00,18:00,17,16,Overcast.,12,220,90,1013
453
+ 20240422,18:00,00:00,16,14,Overcast.,10,220,93,1014
454
+ 20240423,00:00,06:00,16,14,Overcast.,5,230,86,1014
455
+ 20240423,06:00,12:00,17,15,Partly sunny.,9,200,83,1016
456
+ 20240423,12:00,18:00,18,17,Partly sunny.,22,290,72,1017
457
+ 20240423,18:00,00:00,16,15,Passing clouds.,17,310,79,1017
458
+ 20240424,00:00,06:00,15,15,Passing clouds.,10,270,72,1017
459
+ 20240424,06:00,12:00,18,15,Overcast.,12,270,62,1018
460
+ 20240424,12:00,18:00,19,17,Scattered clouds.,20,300,64,1018
461
+ 20240424,18:00,00:00,16,15,Partly sunny.,19,310,77,1018
462
+ 20240425,00:00,06:00,15,14,Partly cloudy.,14,290,85,1018
463
+ 20240425,06:00,12:00,18,14,Partly sunny.,15,260,79,1019
464
+ 20240425,12:00,18:00,18,16,Partly sunny.,18,290,56,1018
465
+ 20240425,18:00,00:00,16,15,Passing clouds.,13,290,74,1017
466
+ 20240426,00:00,06:00,15,14,Mostly cloudy.,11,280,82,1016
467
+ 20240426,06:00,12:00,16,14,Broken clouds.,12,250,84,1015
468
+ 20240426,12:00,18:00,17,16,Partly sunny.,18,280,73,1014
469
+ 20240426,18:00,00:00,16,14,Passing clouds.,17,260,85,1014
470
+ 20240427,00:00,06:00,15,14,Mostly cloudy.,11,280,89,1013
471
+ 20240427,06:00,12:00,17,14,Passing clouds.,8,180,84,1015
472
+ 20240427,12:00,18:00,18,17,Passing clouds.,15,250,70,1016
473
+ 20240427,18:00,00:00,17,14,Passing clouds.,9,320,88,1016
474
+ 20240428,00:00,06:00,14,13,Clear.,1,80,96,1016
475
+ 20240428,06:00,12:00,18,14,Passing clouds.,8,200,86,1016
476
+ 20240428,12:00,18:00,18,17,Sunny.,13,270,73,1015
477
+ 20240428,18:00,00:00,17,14,Passing clouds.,8,290,92,1014
478
+ 20240429,00:00,06:00,14,14,Low clouds.,2,180,100,1014
479
+ 20240429,06:00,12:00,17,14,Overcast.,9,200,90,1014
480
+ 20240429,12:00,18:00,19,18,Sunny.,14,240,77,1011
481
+ 20240429,18:00,00:00,17,14,Passing clouds.,8,180,96,1011
482
+ 20240430,00:00,06:00,15,14,Passing clouds.,13,160,99,1011
483
+ 20240430,06:00,12:00,18,15,Partly sunny.,10,160,88,1012
484
+ 20240430,12:00,18:00,18,17,Scattered clouds.,17,200,80,1011
485
+ 20240430,18:00,00:00,16,16,Passing clouds.,13,170,90,1012
486
+ 20240501,00:00,06:00,16,16,Passing clouds.,13,150,82,1011
487
+ 20240501,06:00,12:00,18,16,Scattered clouds.,12,210,72,1011
488
+ 20240501,12:00,18:00,18,17,Partly sunny.,15,210,70,1010
489
+ 20240501,18:00,00:00,17,16,Passing clouds.,9,210,84,1011
490
+ 20240502,00:00,06:00,16,15,Overcast.,9,190,89,1012
491
+ 20240502,06:00,12:00,17,15,Overcast.,9,210,83,1013
492
+ 20240502,12:00,18:00,19,17,Passing clouds.,14,210,71,1012
493
+ 20240502,18:00,00:00,17,16,Overcast.,4,260,83,1012
494
+ 20240503,00:00,06:00,16,15,Overcast.,9,160,92,1011
495
+ 20240503,06:00,12:00,18,16,Overcast.,8,130,85,1012
496
+ 20240503,12:00,18:00,19,17,Scattered clouds.,15,210,68,1012
497
+ 20240503,18:00,00:00,17,16,Overcast.,8,210,81,1012
498
+ 20240504,00:00,06:00,16,16,Overcast.,6,180,82,1012
499
+ 20240504,06:00,12:00,18,16,Overcast.,10,220,72,1013
500
+ 20240504,12:00,18:00,18,17,Partly sunny.,17,250,74,1013
501
+ 20240504,18:00,00:00,17,15,Partly cloudy.,17,270,86,1014
502
+ 20240505,00:00,06:00,16,14,Overcast.,11,220,93,1013
503
+ 20240505,06:00,12:00,17,14,Partly sunny.,25,300,76,1014
504
+ 20240505,12:00,18:00,17,16,Scattered clouds.,23,270,53,1015
505
+ 20240505,18:00,00:00,15,14,Passing clouds.,5,270,61,1016
506
+ 20240506,00:00,06:00,12,10,Clear.,6,90,82,1016
507
+ 20240506,06:00,12:00,18,11,Sunny.,11,270,64,1016
508
+ 20240506,12:00,18:00,19,18,Sunny.,20,280,58,1015
509
+ 20240506,18:00,00:00,17,15,Clear.,11,300,73,1015
510
+ 20240507,00:00,06:00,14,12,Clear.,4,100,95,1014
511
+ 20240507,06:00,12:00,18,13,Sunny.,12,210,81,1014
512
+ 20240507,12:00,18:00,18,17,Passing clouds.,15,200,76,1012
513
+ 20240507,18:00,00:00,16,15,Passing clouds.,13,170,87,1012
514
+ 20240508,00:00,06:00,15,14,Passing clouds.,13,130,86,1011
515
+ 20240508,06:00,12:00,18,14,Overcast.,17,170,73,1012
516
+ 20240508,12:00,18:00,18,17,Broken clouds.,18,200,73,1011
517
+ 20240508,18:00,00:00,16,16,Passing clouds.,12,170,83,1011
518
+ 20240509,00:00,06:00,16,16,Overcast.,13,170,80,1012
519
+ 20240509,06:00,12:00,18,16,Overcast.,10,150,75,1014
520
+ 20240509,12:00,18:00,19,17,Passing clouds.,16,200,67,1013
521
+ 20240509,18:00,00:00,17,16,Passing clouds.,4,260,80,1014
522
+ 20240510,00:00,06:00,16,14,Passing clouds.,0,0,92,1014
523
+ 20240510,06:00,12:00,18,16,Overcast.,8,0,84,1015
524
+ 20240510,12:00,18:00,18,17,Overcast.,15,280,77,1014
525
+ 20240510,18:00,00:00,17,16,Overcast.,14,290,81,1014
526
+ 20240511,00:00,06:00,16,16,Overcast.,12,10,86,1013
527
+ 20240511,06:00,12:00,18,16,Overcast.,12,340,86,1014
528
+ 20240511,12:00,18:00,18,17,Partly sunny.,15,300,79,1013
529
+ 20240511,18:00,00:00,16,16,Overcast.,6,330,87,1014
530
+ 20240512,00:00,06:00,15,15,Overcast.,4,0,95,1014
531
+ 20240512,06:00,12:00,18,15,Overcast.,8,200,84,1015
532
+ 20240512,12:00,18:00,19,18,Passing clouds.,19,310,72,1012
533
+ 20240512,18:00,00:00,17,16,Overcast.,11,300,91,1014
534
+ 20240513,00:00,06:00,16,16,Overcast.,4,180,95,1014
535
+ 20240513,06:00,12:00,17,15,Overcast.,10,250,90,1015
536
+ 20240513,12:00,18:00,18,16,Scattered clouds.,18,290,75,1014
537
+ 20240513,18:00,00:00,16,14,Passing clouds.,9,290,89,1014
538
+ 20240514,00:00,06:00,14,14,Passing clouds.,3,250,88,1014
539
+ 20240514,06:00,12:00,17,14,Passing clouds.,9,210,75,1014
540
+ 20240514,12:00,18:00,18,17,Scattered clouds.,16,260,76,1013
541
+ 20240514,18:00,00:00,16,16,Overcast.,10,230,79,1013
542
+ 20240515,00:00,06:00,16,15,Mostly cloudy.,9,170,83,1013
543
+ 20240515,06:00,12:00,16,15,Mostly cloudy.,10,270,88,1014
544
+ 20240515,12:00,18:00,17,16,Overcast.,15,280,82,1013
545
+ 20240515,18:00,00:00,16,16,Overcast.,6,220,83,1014
546
+ 20240516,00:00,06:00,16,15,Overcast.,9,210,84,1014
547
+ 20240516,06:00,12:00,18,16,Overcast.,9,240,73,1015
548
+ 20240516,12:00,18:00,19,18,Scattered clouds.,20,300,68,1014
549
+ 20240516,18:00,00:00,17,16,Passing clouds.,14,260,88,1014
550
+ 20240517,00:00,06:00,16,15,Mostly cloudy.,8,280,92,1015
551
+ 20240517,06:00,12:00,17,16,Overcast.,8,270,85,1015
552
+ 20240517,12:00,18:00,19,18,Overcast.,19,290,77,1013
553
+ 20240517,18:00,00:00,17,16,Overcast.,11,260,82,1014
554
+ 20240518,00:00,06:00,16,16,Overcast.,6,280,81,1015
555
+ 20240518,06:00,12:00,19,16,Overcast.,11,200,74,1016
556
+ 20240518,12:00,18:00,20,18,Scattered clouds.,19,280,70,1015
557
+ 20240518,18:00,00:00,17,16,Passing clouds.,12,300,84,1017
558
+ 20240519,00:00,06:00,16,16,Overcast.,8,270,81,1017
559
+ 20240519,06:00,12:00,18,16,Passing clouds.,13,260,68,1018
560
+ 20240519,12:00,18:00,18,17,Scattered clouds.,17,260,64,1017
561
+ 20240519,18:00,00:00,17,15,Passing clouds.,10,260,78,1015
562
+ 20240520,00:00,06:00,16,16,Overcast.,3,270,80,1015
563
+ 20240520,06:00,12:00,17,16,Partly sunny.,10,200,77,1016
564
+ 20240520,12:00,18:00,18,17,Scattered clouds.,18,260,69,1015
565
+ 20240520,18:00,00:00,16,16,Overcast.,7,270,75,1015
566
+ 20240521,00:00,06:00,16,14,Overcast.,10,280,70,1014
567
+ 20240521,06:00,12:00,18,16,Passing clouds.,11,280,64,1015
568
+ 20240521,12:00,18:00,18,17,Passing clouds.,16,270,65,1014
569
+ 20240521,18:00,00:00,17,14,Passing clouds.,5,260,81,1014
570
+ 20240522,00:00,06:00,16,16,Overcast.,3,10,80,1014
571
+ 20240522,06:00,12:00,18,16,Overcast.,9,220,70,1015
572
+ 20240522,12:00,18:00,19,17,Scattered clouds.,15,270,70,1015
573
+ 20240522,18:00,00:00,16,16,Overcast.,10,220,78,1015
574
+ 20240523,00:00,06:00,16,15,Mostly cloudy.,9,210,84,1014
575
+ 20240523,06:00,12:00,17,16,Partly sunny.,13,210,80,1014
576
+ 20240523,12:00,18:00,18,16,Scattered clouds.,15,200,74,1014
577
+ 20240523,18:00,00:00,16,16,Passing clouds.,5,210,82,1014
578
+ 20240524,00:00,06:00,16,16,Overcast.,6,190,79,1013
579
+ 20240524,06:00,12:00,17,16,Overcast.,10,140,80,1014
580
+ 20240524,12:00,18:00,19,17,Broken clouds.,15,260,74,1014
581
+ 20240524,18:00,00:00,17,16,Passing clouds.,15,260,82,1014
582
+ 20240525,00:00,06:00,16,16,Overcast.,9,190,85,1014
583
+ 20240525,06:00,12:00,17,14,Broken clouds.,14,260,89,1016
584
+ 20240525,12:00,18:00,18,16,Partly sunny.,14,270,75,1016
585
+ 20240525,18:00,00:00,16,15,Passing clouds.,8,240,82,1016
586
+ 20240526,00:00,06:00,16,15,Overcast.,3,330,80,1016
587
+ 20240526,06:00,12:00,17,16,Partly sunny.,10,270,82,1017
588
+ 20240526,12:00,18:00,18,17,Passing clouds.,16,280,68,1016
589
+ 20240526,18:00,00:00,16,16,Passing clouds.,12,340,84,1016
590
+ 20240527,00:00,06:00,16,16,Overcast.,6,350,89,1016
591
+ 20240527,06:00,12:00,18,16,Overcast.,10,290,82,1017
592
+ 20240527,12:00,18:00,18,16,Partly sunny.,17,260,76,1017
593
+ 20240527,18:00,00:00,16,15,Passing clouds.,8,300,88,1017
594
+ 20240528,00:00,06:00,15,14,Overcast.,3,280,94,1016
595
+ 20240528,06:00,12:00,17,14,Overcast.,8,260,92,1017
596
+ 20240528,12:00,18:00,18,17,Partly sunny.,15,270,81,1017
597
+ 20240528,18:00,00:00,16,14,Overcast.,8,280,92,1017
598
+ 20240529,00:00,06:00,14,14,Low clouds.,9,170,92,1017
599
+ 20240529,06:00,12:00,17,14,Overcast.,11,190,87,1017
600
+ 20240529,12:00,18:00,18,17,Scattered clouds.,13,200,77,1016
601
+ 20240529,18:00,00:00,16,15,Passing clouds.,5,210,91,1016
602
+ 20240530,00:00,06:00,15,15,Overcast.,4,160,93,1014
603
+ 20240530,06:00,12:00,17,15,Overcast.,12,180,90,1015
604
+ 20240530,12:00,18:00,18,17,Partly sunny.,16,200,76,1014
605
+ 20240530,18:00,00:00,17,15,Passing clouds.,7,210,86,1014
606
+ 20240531,00:00,06:00,16,14,Overcast.,8,210,91,1013
607
+ 20240531,06:00,12:00,18,15,Overcast.,7,210,84,1013
608
+ 20240531,12:00,18:00,18,17,Mostly cloudy.,16,270,79,1013
609
+ 20240531,18:00,00:00,16,15,Overcast.,8,210,86,1013
610
+ 20240601,00:00,06:00,15,14,Overcast.,10,200,90,1013
611
+ 20240601,06:00,12:00,18,15,Overcast.,8,220,82,1014
612
+ 20240601,12:00,18:00,18,17,Passing clouds.,16,260,75,1013
613
+ 20240601,18:00,00:00,17,16,Overcast.,9,240,83,1014
614
+ 20240602,00:00,06:00,16,16,Overcast.,9,180,89,1013
615
+ 20240602,06:00,12:00,17,16,More clouds than sun.,9,210,87,1014
616
+ 20240602,12:00,18:00,18,17,Scattered clouds.,11,200,75,1013
617
+ 20240602,18:00,00:00,17,16,Overcast.,11,210,86,1013
618
+ 20240603,00:00,06:00,16,15,Mostly cloudy.,13,180,95,1012
619
+ 20240603,06:00,12:00,18,15,Partly sunny.,13,180,84,1013
620
+ 20240603,12:00,18:00,18,17,Partly sunny.,17,200,76,1012
621
+ 20240603,18:00,00:00,17,16,Passing clouds.,8,210,87,1011
622
+ 20240604,00:00,06:00,16,16,Overcast.,12,180,91,1010
623
+ 20240604,06:00,12:00,17,16,Overcast.,14,190,90,1011
624
+ 20240604,12:00,18:00,19,17,Partly sunny.,16,210,84,1011
625
+ 20240604,18:00,00:00,17,16,Low clouds.,8,180,97,1012
626
+ 20240605,00:00,06:00,17,16,Low clouds.,6,190,98,1011
627
+ 20240605,06:00,12:00,17,16,Fog.,7,170,99,1012
628
+ 20240605,12:00,18:00,18,17,Partly sunny.,12,210,91,1012
629
+ 20240605,18:00,00:00,17,16,Low clouds.,1,220,99,1012
630
+ 20240606,00:00,06:00,17,16,Low clouds.,6,290,98,1011
631
+ 20240606,06:00,12:00,17,17,Low clouds.,6,250,98,1013
632
+ 20240606,12:00,18:00,18,17,Low clouds.,12,280,91,1012
633
+ 20240606,18:00,00:00,18,17,Low clouds.,6,210,98,1012
634
+ 20240607,00:00,06:00,17,16,Low clouds.,4,240,99,1012
635
+ 20240607,06:00,12:00,18,17,Mostly cloudy.,10,210,91,1013
636
+ 20240607,12:00,18:00,19,18,Cloudy.,11,210,85,1013
637
+ 20240607,18:00,00:00,19,17,Low clouds.,6,190,81,1012
638
+ 20240608,00:00,06:00,,,Not Available,,,,
639
+ 20240608,06:00,12:00,18,17,Overcast.,14,210,88,1014
640
+ 20240608,12:00,18:00,19,17,Overcast.,11,210,83,1014
641
+ 20240608,18:00,00:00,17,17,Overcast.,6,220,88,1014
642
+ 20240609,00:00,06:00,,,Not Available,,,,
643
+ 20240609,06:00,12:00,20,17,Mostly cloudy.,11,210,78,1015
644
+ 20240609,12:00,18:00,22,18,Partly sunny.,13,210,71,1014
645
+ 20240609,18:00,00:00,18,16,Overcast.,6,200,83,1014
646
+ 20240610,00:00,06:00,16,16,Overcast.,7,160,90,1014
647
+ 20240610,06:00,12:00,18,16,Overcast.,5,190,85,1014
648
+ 20240610,12:00,18:00,20,18,Scattered clouds.,15,270,73,1013
649
+ 20240610,18:00,00:00,18,18,Overcast.,11,300,85,1013
650
+ 20240611,00:00,06:00,18,17,Overcast.,10,310,92,1012
651
+ 20240611,06:00,12:00,20,17,Overcast.,11,260,96,1013
652
+ 20240611,12:00,18:00,18,18,Mostly cloudy.,13,270,93,1013
653
+ 20240611,18:00,00:00,17,17,Overcast.,8,260,94,1013
654
+ 20240612,00:00,06:00,17,16,Low clouds.,6,220,96,1013
655
+ 20240612,06:00,12:00,19,17,Drizzle. Fog.,10,280,78,1015
656
+ 20240612,12:00,18:00,21,19,Passing clouds.,16,290,74,1014
657
+ 20240612,18:00,00:00,19,17,Passing clouds.,13,290,89,1014
658
+ 20240613,00:00,06:00,17,17,Overcast.,3,280,94,1014
659
+ 20240613,06:00,12:00,19,17,Overcast.,9,290,87,1015
660
+ 20240613,12:00,18:00,21,19,Passing clouds.,20,300,68,1015
661
+ 20240613,18:00,00:00,18,17,Passing clouds.,15,310,86,1015
662
+ 20240614,00:00,06:00,17,17,Overcast.,8,290,85,1014
663
+ 20240614,06:00,12:00,21,18,Passing clouds.,17,310,73,1014
664
+ 20240614,12:00,18:00,21,19,Passing clouds.,20,300,71,1013
665
+ 20240614,18:00,00:00,19,17,Passing clouds.,11,310,90,1012
666
+ 20240615,00:00,06:00,17,17,Passing clouds.,0,0,93,1011
667
+ 20240615,06:00,12:00,20,18,Passing clouds.,7,340,83,1010
668
+ 20240615,12:00,18:00,22,21,Passing clouds.,14,290,74,1009
669
+ 20240615,18:00,00:00,20,18,Fog.,6,260,93,1009
670
+ 20240616,00:00,06:00,,,Not Available,,,,
671
+ 20240616,06:00,12:00,21,17,Partly sunny.,18,180,80,1009
672
+ 20240616,12:00,18:00,22,18,Partly sunny.,17,180,72,1008
673
+ 20240616,18:00,00:00,17,16,Fog.,10,180,89,1008
674
+ 20240617,00:00,06:00,,,Not Available,,,,
675
+ 20240617,06:00,12:00,19,16,Overcast.,14,180,84,1008
676
+ 20240617,12:00,18:00,19,18,Scattered clouds.,15,210,73,1007
677
+ 20240617,18:00,00:00,18,17,Passing clouds.,8,130,84,1007
678
+ 20240618,00:00,06:00,17,17,Passing clouds.,15,170,88,1007
679
+ 20240618,06:00,12:00,19,16,Partly sunny.,18,190,82,1008
680
+ 20240618,12:00,18:00,19,18,Scattered clouds.,15,200,75,1009
681
+ 20240618,18:00,00:00,17,17,Partly sunny.,9,200,85,1009
682
+ 20240619,00:00,06:00,17,17,Overcast.,10,180,86,1010
683
+ 20240619,06:00,12:00,18,17,Overcast.,10,190,83,1011
684
+ 20240619,12:00,18:00,19,19,Sunny.,14,210,74,1011
685
+ 20240619,18:00,00:00,18,17,Sunny.,13,320,87,1010
686
+ 20240620,00:00,06:00,18,17,Passing clouds.,5,310,91,1009
687
+ 20240620,06:00,12:00,21,18,Overcast.,8,270,80,1010
688
+ 20240620,12:00,18:00,21,20,Passing clouds.,19,300,70,1009
689
+ 20240620,18:00,00:00,19,18,Passing clouds.,15,310,88,1008
690
+ 20240621,00:00,06:00,18,18,Passing clouds.,9,300,90,1008
691
+ 20240621,06:00,12:00,21,18,Partly sunny.,10,280,83,1008
692
+ 20240621,12:00,18:00,21,21,Passing clouds.,19,300,72,1007
693
+ 20240621,18:00,00:00,19,18,Passing clouds.,11,320,88,1008
694
+ 20240622,00:00,06:00,,,Not Available,,,,
695
+ 20240622,06:00,12:00,22,18,Passing clouds.,11,310,87,1009
696
+ 20240622,12:00,18:00,22,22,Passing clouds.,15,290,76,1010
697
+ 20240622,18:00,00:00,20,19,Passing clouds.,6,310,89,1011
698
+ 20240623,00:00,06:00,20,20,Sunny.,0,0,93,1011
699
+ 20240623,06:00,12:00,28,21,Scattered clouds.,7,250,62,1012
700
+ 20240623,12:00,18:00,26,23,Scattered clouds.,13,270,67,1012
701
+ 20240623,18:00,00:00,23,20,Scattered clouds.,9,190,87,1012
702
+ 20240624,00:00,06:00,21,20,Clear.,5,300,90,1012
703
+ 20240624,06:00,12:00,26,22,Passing clouds.,10,340,76,1013
704
+ 20240624,12:00,18:00,26,24,Scattered clouds.,15,300,62,1012
705
+ 20240624,18:00,00:00,,,Not Available,,,,
706
+ 20240625,00:00,06:00,,,Not Available,,,,
707
+ 20240625,06:00,12:00,,,Not Available,,,,
708
+ 20240625,12:00,18:00,24,21,Scattered clouds.,13,300,75,1012
709
+ 20240625,18:00,00:00,21,19,Passing clouds.,9,230,87,1015
710
+ 20240626,00:00,06:00,20,19,Passing clouds.,6,200,90,1015
711
+ 20240626,06:00,12:00,22,20,Partly sunny.,13,200,81,1015
712
+ 20240626,12:00,18:00,22,21,Scattered clouds.,15,250,76,1014
713
+ 20240626,18:00,00:00,20,19,Passing clouds.,7,230,88,1013
714
+ 20240627,00:00,06:00,19,18,Passing clouds.,7,180,89,1012
715
+ 20240627,06:00,12:00,21,19,Passing clouds.,15,160,80,1012
716
+ 20240627,12:00,18:00,21,20,Passing clouds.,13,210,76,1010
717
+ 20240627,18:00,00:00,19,19,Passing clouds.,7,210,87,1009
718
+ 20240628,00:00,06:00,19,19,Passing clouds.,10,180,90,1009
719
+ 20240628,06:00,12:00,20,19,Partly sunny.,13,190,86,1010
720
+ 20240628,12:00,18:00,20,18,Partly sunny.,14,200,78,1010
721
+ 20240628,18:00,00:00,18,17,Passing clouds.,2,260,90,1010
722
+ 20240629,00:00,06:00,18,17,Overcast.,3,320,94,1011
723
+ 20240629,06:00,12:00,22,18,Passing clouds.,8,0,78,1012
724
+ 20240629,12:00,18:00,23,22,Passing clouds.,19,300,69,1012
725
+ 20240629,18:00,00:00,21,19,Passing clouds.,15,330,89,1012
726
+ 20240630,00:00,06:00,20,19,Overcast.,11,320,90,1012
727
+ 20240630,06:00,12:00,22,19,Passing clouds.,15,310,84,1013
728
+ 20240630,12:00,18:00,22,20,Passing clouds.,15,280,76,1013
729
+ 20240630,18:00,00:00,19,18,Passing clouds.,7,260,92,1013
730
+ 20240701,00:00,06:00,18,18,Partly sunny.,7,150,97,1012
731
+ 20240701,06:00,12:00,20,18,Low clouds.,9,190,93,1013
732
+ 20240701,12:00,18:00,21,19,Scattered clouds.,14,210,82,1011
733
+ 20240701,18:00,00:00,18,17,Partly sunny.,6,230,93,1011
734
+ 20240702,00:00,06:00,18,17,Overcast.,3,180,95,1010
735
+ 20240702,06:00,12:00,21,17,Passing clouds.,11,210,84,1011
736
+ 20240702,12:00,18:00,22,20,Scattered clouds.,13,280,75,1010
737
+ 20240702,18:00,00:00,19,18,Passing clouds.,8,260,92,1010
738
+ 20240703,00:00,06:00,19,18,Passing clouds.,6,320,94,1010
739
+ 20240703,06:00,12:00,23,19,Partly sunny.,8,290,89,1012
740
+ 20240703,12:00,18:00,23,21,Passing clouds.,16,290,78,1012
741
+ 20240703,18:00,00:00,20,19,Passing clouds.,10,280,94,1013
742
+ 20240704,00:00,06:00,19,19,Passing clouds.,13,320,97,1013
743
+ 20240704,06:00,12:00,22,19,Low clouds.,8,300,92,1015
744
+ 20240704,12:00,18:00,24,21,Sunny.,21,310,76,1013
745
+ 20240704,18:00,00:00,20,19,Passing clouds.,8,280,91,1013
746
+ 20240705,00:00,06:00,19,19,Overcast.,8,320,94,1012
747
+ 20240705,06:00,12:00,22,21,Passing clouds.,12,280,81,1011
748
+ 20240705,12:00,18:00,23,19,Scattered clouds.,14,270,81,1009
749
+ 20240705,18:00,00:00,19,18,Scattered clouds.,8,180,97,1009
750
+ 20240706,00:00,06:00,19,18,Fog.,15,170,100,1009
751
+ 20240706,06:00,12:00,21,19,Fog.,15,160,96,1011
752
+ 20240706,12:00,18:00,22,21,Passing clouds.,14,200,85,1011
753
+ 20240706,18:00,00:00,20,19,Partly sunny.,5,230,93,1011
754
+ 20240707,00:00,06:00,18,18,Low clouds.,0,0,0,1013
755
+ 20240707,06:00,12:00,22,20,Overcast.,8,160,84,1014
756
+ 20240707,12:00,18:00,23,22,Passing clouds.,15,210,70,1013
757
+ 20240707,18:00,00:00,22,18,Passing clouds.,10,310,90,1011
758
+ 20240708,00:00,06:00,19,19,Low clouds.,4,290,96,1011
759
+ 20240708,06:00,12:00,21,19,Overcast.,9,220,96,1011
760
+ 20240708,12:00,18:00,22,21,Passing clouds.,14,200,80,1010
761
+ 20240708,18:00,00:00,20,20,Scattered clouds.,13,280,90,1009
762
+ 20240709,00:00,06:00,19,19,Passing clouds.,7,210,99,1009
763
+ 20240709,06:00,12:00,22,19,Passing clouds.,11,310,91,1010
764
+ 20240709,12:00,18:00,22,21,Passing clouds.,15,300,83,1010
765
+ 20240709,18:00,00:00,19,19,Low clouds.,13,310,91,1010
766
+ 20240710,00:00,06:00,19,19,Fog.,9,310,87,1009
767
+ 20240710,06:00,12:00,23,19,Fog.,6,180,85,1012
768
+ 20240710,12:00,18:00,23,22,Broken clouds.,11,260,79,1011
769
+ 20240710,18:00,00:00,22,19,Low clouds.,6,260,87,1011
770
+ 20240711,00:00,06:00,19,18,Fog.,7,320,89,1011
771
+ 20240711,06:00,12:00,22,18,Fog.,7,180,94,1013
772
+ 20240711,12:00,18:00,24,21,Scattered clouds.,14,290,80,1011
773
+ 20240711,18:00,00:00,22,19,Partly sunny.,7,270,81,1011
774
+ 20240712,00:00,06:00,18,18,Fog.,4,160,89,1012
775
+ 20240712,06:00,12:00,21,18,Low clouds.,7,0,92,1012
776
+ 20240712,12:00,18:00,22,20,Scattered clouds.,17,300,82,1011
777
+ 20240712,18:00,00:00,19,18,Passing clouds.,11,270,97,1011
778
+ 20240713,00:00,06:00,18,18,Low clouds.,3,270,100,1012
779
+ 20240713,06:00,12:00,22,18,Overcast.,8,190,88,1014
780
+ 20240713,12:00,18:00,23,22,Passing clouds.,10,0,71,1014
781
+ 20240713,18:00,00:00,23,19,Passing clouds.,11,320,83,1015
782
+ 20240714,00:00,06:00,19,19,Passing clouds.,7,270,96,1016
783
+ 20240714,06:00,12:00,24,21,Overcast.,8,180,75,1018
784
+ 20240714,12:00,18:00,26,22,Broken clouds.,18,290,66,1016
785
+ 20240714,18:00,00:00,22,19,Passing clouds.,12,300,87,1016
786
+ 20240715,00:00,06:00,19,19,Overcast.,9,270,97,1017
787
+ 20240715,06:00,12:00,22,19,Overcast.,18,290,91,1017
788
+ 20240715,12:00,18:00,23,21,Scattered clouds.,20,320,78,1015
789
+ 20240715,18:00,00:00,20,19,Passing clouds.,12,320,86,1015
790
+ 20240716,00:00,06:00,20,19,Passing clouds.,6,270,80,1015
791
+ 20240716,06:00,12:00,21,19,Overcast.,6,180,90,1016
792
+ 20240716,12:00,18:00,23,22,Scattered clouds.,16,250,74,1014
793
+ 20240716,18:00,00:00,22,20,Passing clouds.,9,290,81,1014
794
+ 20240717,00:00,06:00,21,19,Passing clouds.,6,270,81,1014
795
+ 20240717,06:00,12:00,21,19,Partly sunny.,9,280,87,1015
796
+ 20240717,12:00,18:00,23,21,Scattered clouds.,15,290,76,1014
797
+ 20240717,18:00,00:00,21,19,Passing clouds.,6,260,82,1014
798
+ 20240718,00:00,06:00,20,19,Passing clouds.,3,180,79,1014
799
+ 20240718,06:00,12:00,22,20,Partly sunny.,11,200,81,1015
800
+ 20240718,12:00,18:00,23,19,Partly sunny.,15,260,82,1015
801
+ 20240718,18:00,00:00,19,19,Passing clouds.,3,260,86,1015
802
+ 20240719,00:00,06:00,19,19,Overcast.,5,300,84,1015
803
+ 20240719,06:00,12:00,22,19,Passing clouds.,11,300,89,1015
804
+ 20240719,12:00,18:00,24,22,Passing clouds.,16,280,79,1014
805
+ 20240719,18:00,00:00,21,19,Passing clouds.,18,320,95,1013
806
+ 20240720,00:00,06:00,20,20,Low clouds.,13,320,100,1013
807
+ 20240720,06:00,12:00,23,19,Fog.,15,330,90,1014
808
+ 20240720,12:00,18:00,23,22,Passing clouds.,19,290,79,1012
809
+ 20240720,18:00,00:00,22,19,Passing clouds.,11,280,94,1012
810
+ 20240721,00:00,06:00,19,19,Low clouds.,9,280,99,1012
811
+ 20240721,06:00,12:00,22,19,Partly sunny.,10,180,83,1013
812
+ 20240721,12:00,18:00,21,20,Scattered clouds.,14,210,84,1012
813
+ 20240721,18:00,00:00,19,18,Fog.,4,200,96,1012
814
+ 20240722,00:00,06:00,18,17,Clear.,1,170,99,1011
815
+ 20240722,06:00,12:00,24,18,Scattered clouds.,11,210,88,1011
816
+ 20240722,12:00,18:00,23,21,Scattered clouds.,12,270,80,1010
817
+ 20240722,18:00,00:00,21,19,Partly sunny.,6,180,87,1011
818
+ 20240723,00:00,06:00,21,20,Clear.,8,330,79,1011
819
+ 20240723,06:00,12:00,25,21,Scattered clouds.,11,270,83,1013
820
+ 20240723,12:00,18:00,27,23,Scattered clouds.,15,240,71,1013
821
+ 20240723,18:00,00:00,22,22,Passing clouds.,9,260,77,1014
822
+ 20240724,00:00,06:00,22,21,Passing clouds.,10,330,83,1015
823
+ 20240724,06:00,12:00,26,21,Passing clouds.,13,320,87,1017
824
+ 20240724,12:00,18:00,27,24,Passing clouds.,19,310,68,1016
825
+ 20240724,18:00,00:00,24,21,Passing clouds.,11,320,79,1017
826
+ 20240725,00:00,06:00,22,21,Clear.,10,340,88,1017
827
+ 20240725,06:00,12:00,26,22,Scattered clouds.,15,310,81,1017
828
+ 20240725,12:00,18:00,27,25,Scattered clouds.,19,310,70,1015
829
+ 20240725,18:00,00:00,23,21,Passing clouds.,14,290,93,1014
830
+ 20240726,00:00,06:00,21,21,Passing clouds.,12,320,97,1013
831
+ 20240726,06:00,12:00,26,21,Passing clouds.,11,310,78,1013
832
+ 20240726,12:00,18:00,24,22,Passing clouds.,17,290,75,1011
833
+ 20240726,18:00,00:00,22,19,Passing clouds.,9,300,89,1011
834
+ 20240727,00:00,06:00,19,18,Fog.,3,280,97,1011
835
+ 20240727,06:00,12:00,25,20,Passing clouds.,11,290,75,1012
836
+ 20240727,12:00,18:00,25,21,Passing clouds.,19,300,73,1011
837
+ 20240727,18:00,00:00,21,19,Passing clouds.,11,310,92,1011
838
+ 20240728,00:00,06:00,19,18,Overcast.,6,320,93,1012
839
+ 20240728,06:00,12:00,23,19,Passing clouds.,11,270,77,1013
840
+ 20240728,12:00,18:00,23,22,Sunny.,20,300,71,1013
841
+ 20240728,18:00,00:00,21,19,Passing clouds.,13,320,89,1014
842
+ 20240729,00:00,06:00,19,18,Clear.,10,0,96,1014
843
+ 20240729,06:00,12:00,26,19,Passing clouds.,12,310,76,1015
844
+ 20240729,12:00,18:00,26,22,Passing clouds.,21,300,64,1014
845
+ 20240729,18:00,00:00,22,19,Passing clouds.,15,320,81,1014
846
+ 20240730,00:00,06:00,19,19,Passing clouds.,6,290,84,1014
847
+ 20240730,06:00,12:00,21,19,Partly sunny.,9,280,81,1015
848
+ 20240730,12:00,18:00,25,22,Passing clouds.,15,300,68,1013
849
+ 20240730,18:00,00:00,21,18,Passing clouds.,11,310,90,1012
850
+ 20240731,00:00,06:00,19,18,Passing clouds.,7,320,86,1012
851
+ 20240731,06:00,12:00,22,18,Partly sunny.,10,290,76,1014
852
+ 20240731,12:00,18:00,24,22,Passing clouds.,18,300,68,1013
853
+ 20240731,18:00,00:00,21,20,Passing clouds.,12,310,90,1013
854
+ 20240801,00:00,06:00,20,19,Passing clouds.,9,270,90,1014
855
+ 20240801,06:00,12:00,23,19,Scattered clouds.,13,300,80,1015
856
+ 20240801,12:00,18:00,24,22,Broken clouds.,16,260,71,1015
857
+ 20240801,18:00,00:00,22,21,Passing clouds.,7,270,80,1016
858
+ 20240802,00:00,06:00,21,20,Passing clouds.,10,320,83,1016
859
+ 20240802,06:00,12:00,24,19,Scattered clouds.,13,320,87,1017
860
+ 20240802,12:00,18:00,27,24,Scattered clouds.,18,300,66,1015
861
+ 20240802,18:00,00:00,24,20,Clear.,14,310,83,1015
862
+ 20240803,00:00,06:00,20,19,Passing clouds.,11,320,100,1015
863
+ 20240803,06:00,12:00,23,19,Passing clouds.,12,300,86,1014
864
+ 20240803,12:00,18:00,24,23,Passing clouds.,21,300,74,1012
865
+ 20240803,18:00,00:00,22,19,Passing clouds.,12,340,94,1012
866
+ 20240804,00:00,06:00,19,19,Clear.,11,320,100,1012
867
+ 20240804,06:00,12:00,24,20,Scattered clouds.,14,310,81,1012
868
+ 20240804,12:00,18:00,24,23,Scattered clouds.,18,290,77,1010
869
+ 20240804,18:00,00:00,21,19,Passing clouds.,12,300,94,1010
870
+ 20240805,00:00,06:00,20,20,Clear.,8,340,98,1011
871
+ 20240805,06:00,12:00,25,22,Scattered clouds.,12,310,80,1012
872
+ 20240805,12:00,18:00,27,22,Scattered clouds.,14,280,70,1011
873
+ 20240805,18:00,00:00,21,19,Passing clouds.,7,200,90,1012
874
+ 20240806,00:00,06:00,20,19,Fog.,3,160,88,1012
875
+ 20240806,06:00,12:00,23,19,Fog.,7,170,87,1014
876
+ 20240806,12:00,18:00,27,22,Broken clouds.,12,180,77,1013
877
+ 20240806,18:00,00:00,22,20,Fog.,8,160,91,1014
878
+ 20240807,00:00,06:00,21,20,Fog.,5,140,92,1015
879
+ 20240807,06:00,12:00,22,20,Fog.,11,160,90,1016
880
+ 20240807,12:00,18:00,24,22,Broken clouds.,11,210,77,1015
881
+ 20240807,18:00,00:00,23,21,Passing clouds.,6,250,83,1014
882
+ 20240808,00:00,06:00,20,20,Passing clouds.,4,150,84,1014
883
+ 20240808,06:00,12:00,22,21,Scattered clouds.,10,190,82,1014
884
+ 20240808,12:00,18:00,23,22,Passing clouds.,14,200,76,1012
885
+ 20240808,18:00,00:00,22,20,Passing clouds.,7,260,90,1012
886
+ 20240809,00:00,06:00,20,20,Passing clouds.,3,200,90,1012
887
+ 20240809,06:00,12:00,23,20,Passing clouds.,10,270,81,1012
888
+ 20240809,12:00,18:00,24,22,Scattered clouds.,15,270,73,1011
889
+ 20240809,18:00,00:00,21,19,Fog.,7,260,91,1011
890
+ 20240810,00:00,06:00,20,19,Clear.,6,320,96,1011
891
+ 20240810,06:00,12:00,23,20,Scattered clouds.,12,290,82,1012
892
+ 20240810,12:00,18:00,24,23,Scattered clouds.,14,200,72,1012
893
+ 20240810,18:00,00:00,22,20,Passing clouds.,4,240,82,1012
894
+ 20240811,00:00,06:00,20,20,Fog.,0,0,96,1012
895
+ 20240811,06:00,12:00,25,20,Scattered clouds.,10,190,79,1014
896
+ 20240811,12:00,18:00,26,23,Broken clouds.,12,210,75,1014
897
+ 20240811,18:00,00:00,22,21,Partly cloudy.,7,320,90,1013
898
+ 20240812,00:00,06:00,22,21,Clear.,7,330,99,1013
899
+ 20240812,06:00,12:00,27,22,Scattered clouds.,8,320,82,1014
900
+ 20240812,12:00,18:00,28,22,Passing clouds.,14,290,71,1013
901
+ 20240812,18:00,00:00,24,21,Passing clouds.,8,270,82,1012
902
+ 20240813,00:00,06:00,21,21,Low clouds.,4,180,87,1012
903
+ 20240813,06:00,12:00,28,22,Passing clouds.,8,260,74,1014
904
+ 20240813,12:00,18:00,27,24,Passing clouds.,13,260,71,1013
905
+ 20240813,18:00,00:00,23,22,Passing clouds.,9,300,81,1013
906
+ 20240814,00:00,06:00,22,21,Passing clouds.,0,0,86,1013
907
+ 20240814,06:00,12:00,22,22,Partly sunny.,7,210,88,1015
908
+ 20240814,12:00,18:00,24,23,Passing clouds.,14,200,78,1014
909
+ 20240814,18:00,00:00,22,21,Passing clouds.,12,310,89,1013
910
+ 20240815,00:00,06:00,21,19,Passing clouds.,2,320,89,1013
911
+ 20240815,06:00,12:00,24,21,Partly sunny.,8,210,80,1014
912
+ 20240815,12:00,18:00,24,22,Passing clouds.,14,280,76,1012
913
+ 20240815,18:00,00:00,22,21,Passing clouds.,7,260,92,1011
914
+ 20240816,00:00,06:00,21,21,Fog.,8,190,93,1011
915
+ 20240816,06:00,12:00,21,20,Low clouds.,11,200,92,1013
916
+ 20240816,12:00,18:00,27,22,Scattered clouds.,13,200,71,1012
917
+ 20240816,18:00,00:00,22,20,Passing clouds.,6,200,81,1012
918
+ 20240817,00:00,06:00,20,20,Overcast.,10,180,92,1012
919
+ 20240817,06:00,12:00,22,20,Overcast.,11,210,81,1014
920
+ 20240817,12:00,18:00,22,21,Scattered clouds.,15,210,76,1013
921
+ 20240817,18:00,00:00,21,20,Passing clouds.,8,320,85,1013
922
+ 20240818,00:00,06:00,20,19,Overcast.,4,0,89,1013
923
+ 20240818,06:00,12:00,23,19,Overcast.,7,0,80,1014
924
+ 20240818,12:00,18:00,24,23,Passing clouds.,17,280,70,1013
925
+ 20240818,18:00,00:00,22,21,Clear.,15,350,88,1013
926
+ 20240819,00:00,06:00,21,21,Low clouds.,11,0,96,1013
927
+ 20240819,06:00,12:00,25,21,Passing clouds.,9,310,83,1014
928
+ 20240819,12:00,18:00,26,26,Sunny.,19,310,64,1014
929
+ 20240819,18:00,00:00,24,22,Passing clouds.,14,320,77,1013
930
+ 20240820,00:00,06:00,22,21,Passing clouds.,7,0,78,1013
931
+ 20240820,06:00,12:00,27,22,Passing clouds.,13,340,77,1014
932
+ 20240820,12:00,18:00,28,26,Passing clouds.,14,290,62,1013
933
+ 20240820,18:00,00:00,24,22,Passing clouds.,8,320,80,1013
934
+ 20240821,00:00,06:00,22,22,Passing clouds.,4,170,87,1014
935
+ 20240821,06:00,12:00,24,21,Partly sunny.,10,200,84,1014
936
+ 20240821,12:00,18:00,24,22,Scattered clouds.,16,200,85,1013
937
+ 20240821,18:00,00:00,22,21,Passing clouds.,6,200,87,1013
938
+ 20240822,00:00,06:00,22,22,Passing clouds.,7,180,82,1014
939
+ 20240822,06:00,12:00,24,21,Passing clouds.,8,200,83,1014
940
+ 20240822,12:00,18:00,24,22,Scattered clouds.,15,280,74,1013
941
+ 20240822,18:00,00:00,21,19,Passing clouds.,8,280,88,1013
942
+ 20240823,00:00,06:00,21,19,Passing clouds.,6,270,84,1014
943
+ 20240823,06:00,12:00,22,21,Partly sunny.,8,240,67,1015
944
+ 20240823,12:00,18:00,23,21,Passing clouds.,14,270,67,1014
945
+ 20240823,18:00,00:00,21,20,Passing clouds.,10,300,80,1015
946
+ 20240824,00:00,06:00,20,19,Overcast.,4,270,82,1015
947
+ 20240824,06:00,12:00,23,19,Passing clouds.,8,250,73,1017
948
+ 20240824,12:00,18:00,23,21,Sunny.,15,270,67,1016
949
+ 20240824,18:00,00:00,21,19,Passing clouds.,4,300,82,1016
950
+ 20240825,00:00,06:00,19,17,Clear.,6,100,90,1016
951
+ 20240825,06:00,12:00,24,19,Passing clouds.,8,80,68,1017
952
+ 20240825,12:00,18:00,24,23,Sunny.,18,300,66,1016
953
+ 20240825,18:00,00:00,23,21,Clear.,13,310,84,1017
954
+ 20240826,00:00,06:00,19,19,Clear.,0,0,94,1017
955
+ 20240826,06:00,12:00,26,25,Passing clouds.,7,10,65,1017
956
+ 20240826,12:00,18:00,29,24,Sunny.,19,290,61,1016
957
+ 20240826,18:00,00:00,22,21,Clear.,6,280,79,1016
958
+ 20240827,00:00,06:00,21,20,Passing clouds.,3,280,89,1015
959
+ 20240827,06:00,12:00,24,21,Partly sunny.,12,280,78,1015
960
+ 20240827,12:00,18:00,26,21,Passing clouds.,17,280,67,1014
961
+ 20240827,18:00,00:00,21,19,Passing clouds.,5,280,86,1014
962
+ 20240828,00:00,06:00,20,20,Passing clouds.,1,160,88,1014
963
+ 20240828,06:00,12:00,23,20,Passing clouds.,8,280,75,1015
964
+ 20240828,12:00,18:00,23,20,Passing clouds.,16,260,72,1014
965
+ 20240828,18:00,00:00,20,19,Passing clouds.,7,260,86,1014
966
+ 20240829,00:00,06:00,21,20,Passing clouds.,7,270,85,1014
967
+ 20240829,06:00,12:00,24,21,Passing clouds.,11,300,72,1016
968
+ 20240829,12:00,18:00,23,21,Passing clouds.,21,290,68,1015
969
+ 20240829,18:00,00:00,21,19,Passing clouds.,13,320,85,1015
970
+ 20240830,00:00,06:00,20,20,Passing clouds.,9,10,88,1014
971
+ 20240830,06:00,12:00,23,20,Partly sunny.,11,270,81,1017
972
+ 20240830,12:00,18:00,24,22,Scattered clouds.,20,280,71,1016
973
+ 20240830,18:00,00:00,21,19,Passing clouds.,11,290,81,1015
974
+ 20240831,00:00,06:00,19,19,Clear.,3,340,92,1014
975
+ 20240831,06:00,12:00,23,20,Overcast.,8,210,75,1015
976
+ 20240831,12:00,18:00,23,21,Partly sunny.,17,290,81,1013
977
+ 20240831,18:00,00:00,20,19,Low clouds.,4,290,97,1013
978
+ 20240901,00:00,06:00,20,19,Low clouds.,4,260,100,1012
979
+ 20240901,06:00,12:00,22,20,Low clouds.,7,210,84,1013
980
+ 20240901,12:00,18:00,23,21,Partly sunny.,12,210,85,1012
981
+ 20240901,18:00,00:00,20,19,Low clouds.,5,150,95,1012
982
+ 20240902,00:00,06:00,19,19,Low clouds.,0,0,99,1012
983
+ 20240902,06:00,12:00,22,19,Fog.,7,0,95,1013
984
+ 20240902,12:00,18:00,23,21,Sunny.,14,260,82,1012
985
+ 20240902,18:00,00:00,22,20,Clear.,6,200,93,1012
986
+ 20240903,00:00,06:00,22,21,Passing clouds.,1,160,85,1012
987
+ 20240903,06:00,12:00,27,21,Passing clouds.,10,310,76,1013
988
+ 20240903,12:00,18:00,27,24,Passing clouds.,12,260,69,1012
989
+ 20240903,18:00,00:00,23,22,Passing clouds.,6,260,83,1012
990
+ 20240904,00:00,06:00,22,22,Passing clouds.,7,340,86,1012
991
+ 20240904,06:00,12:00,25,21,Passing clouds.,14,320,84,1013
992
+ 20240904,12:00,18:00,26,24,Passing clouds.,18,310,73,1011
993
+ 20240904,18:00,00:00,24,22,Clear.,7,280,82,1012
994
+ 20240905,00:00,06:00,23,22,Clear.,4,340,82,1012
995
+ 20240905,06:00,12:00,27,22,Sunny.,9,310,79,1012
996
+ 20240905,12:00,18:00,29,27,Scattered clouds.,23,320,58,1009
997
+ 20240905,18:00,00:00,26,24,Passing clouds.,5,320,75,1010
998
+ 20240906,00:00,06:00,23,23,Passing clouds.,1,150,89,1010
999
+ 20240906,06:00,12:00,26,24,Scattered clouds.,9,310,75,1010
1000
+ 20240906,12:00,18:00,27,24,Partly sunny.,13,200,70,1010
1001
+ 20240906,18:00,00:00,24,21,Fog.,5,150,96,1010
1002
+ 20240907,00:00,06:00,21,21,Clear.,0,0,100,1008
1003
+ 20240907,06:00,12:00,30,23,Partly sunny.,5,200,77,1009
1004
+ 20240907,12:00,18:00,31,29,Scattered clouds.,11,310,59,1007
1005
+ 20240907,18:00,00:00,29,26,Passing clouds.,14,340,62,1006
1006
+ 20240908,00:00,06:00,24,24,Clear.,13,340,90,1006
1007
+ 20240908,06:00,12:00,31,24,Scattered clouds.,16,330,67,1007
1008
+ 20240908,12:00,18:00,32,30,Scattered clouds.,21,310,49,1006
1009
+ 20240908,18:00,00:00,28,26,Clear.,13,340,62,1007
1010
+ 20240909,00:00,06:00,26,24,Clear.,9,340,81,1008
1011
+ 20240909,06:00,12:00,32,24,Sunny.,8,330,65,1009
1012
+ 20240909,12:00,18:00,32,27,Passing clouds.,22,310,47,1008
1013
+ 20240909,18:00,00:00,26,24,Passing clouds.,5,320,68,1009
1014
+ 20240910,00:00,06:00,24,22,Clear.,8,330,71,1010
1015
+ 20240910,06:00,12:00,28,22,Passing clouds.,15,330,60,1011
1016
+ 20240910,12:00,18:00,28,23,Passing clouds.,23,320,68,1009
1017
+ 20240910,18:00,00:00,23,22,Passing clouds.,14,310,83,1009
1018
+ 20240911,00:00,06:00,22,20,Passing clouds.,5,280,80,1009
1019
+ 20240911,06:00,12:00,22,21,Partly sunny.,10,210,67,1010
1020
+ 20240911,12:00,18:00,23,21,Scattered clouds.,13,220,69,1009
1021
+ 20240911,18:00,00:00,20,18,Passing clouds.,6,190,81,1007
1022
+ 20240912,00:00,06:00,19,18,Passing clouds.,6,110,83,1006
1023
+ 20240912,06:00,12:00,22,21,Partly sunny.,12,140,66,1008
1024
+ 20240912,12:00,18:00,23,20,Scattered clouds.,14,210,70,1007
1025
+ 20240912,18:00,00:00,19,18,Passing clouds.,12,200,84,1007
1026
+ 20240913,00:00,06:00,19,19,Passing clouds.,17,150,76,1008
1027
+ 20240913,06:00,12:00,23,19,Partly sunny.,12,190,65,1009
1028
+ 20240913,12:00,18:00,23,20,Scattered clouds.,16,210,69,1010
1029
+ 20240913,18:00,00:00,20,19,Passing clouds.,7,220,81,1010
1030
+ 20240914,00:00,06:00,20,19,Overcast.,6,200,80,1010
1031
+ 20240914,06:00,12:00,22,20,Overcast.,11,230,72,1012
1032
+ 20240914,12:00,18:00,23,20,Passing clouds.,15,250,68,1011
1033
+ 20240914,18:00,00:00,21,20,Overcast.,6,190,82,1012
1034
+ 20240915,00:00,06:00,21,19,Mostly cloudy.,7,180,91,1011
1035
+ 20240915,06:00,12:00,21,19,Overcast.,13,240,84,1012
1036
+ 20240915,12:00,18:00,21,20,Broken clouds.,15,260,76,1011
1037
+ 20240915,18:00,00:00,19,19,Overcast.,10,260,82,1011
1038
+ 20240916,00:00,06:00,19,19,Overcast.,12,220,77,1011
1039
+ 20240916,06:00,12:00,22,19,Scattered clouds.,15,210,68,1013
1040
+ 20240916,12:00,18:00,23,21,Scattered clouds.,19,280,60,1012
1041
+ 20240916,18:00,00:00,19,18,Passing clouds.,15,290,70,1013
1042
+ 20240917,00:00,06:00,18,16,Passing clouds.,8,280,73,1014
1043
+ 20240917,06:00,12:00,21,16,Partly sunny.,9,90,69,1015
1044
+ 20240917,12:00,18:00,21,21,Passing clouds.,16,250,61,1013
1045
+ 20240917,18:00,00:00,19,17,Passing clouds.,6,300,74,1013
1046
+ 20240918,00:00,06:00,17,16,Passing clouds.,6,90,85,1011
1047
+ 20240918,06:00,12:00,20,17,Broken clouds.,4,140,80,1012
1048
+ 20240918,12:00,18:00,22,19,Partly sunny.,15,260,71,1011
1049
+ 20240918,18:00,00:00,19,18,Partly cloudy.,9,170,76,1011
1050
+ 20240919,00:00,06:00,19,19,Passing clouds.,9,180,74,1011
1051
+ 20240919,06:00,12:00,21,19,Partly sunny.,6,210,68,1012
1052
+ 20240919,12:00,18:00,22,21,Scattered clouds.,17,280,63,1011
1053
+ 20240919,18:00,00:00,20,19,Passing clouds.,14,300,81,1012
1054
+ 20240920,00:00,06:00,19,19,Passing clouds.,9,310,82,1012
1055
+ 20240920,06:00,12:00,21,18,More clouds than sun.,9,290,84,1012
1056
+ 20240920,12:00,18:00,21,20,Scattered clouds.,20,280,71,1012
1057
+ 20240920,18:00,00:00,20,18,Passing clouds.,10,320,83,1012
1058
+ 20240921,00:00,06:00,18,17,Clear.,3,50,93,1012
1059
+ 20240921,06:00,12:00,23,18,Partly sunny.,7,210,73,1013
1060
+ 20240921,12:00,18:00,22,20,Partly sunny.,19,280,75,1012
1061
+ 20240921,18:00,00:00,19,18,Passing clouds.,8,310,92,1013
1062
+ 20240922,00:00,06:00,19,19,Overcast.,6,280,90,1013
1063
+ 20240922,06:00,12:00,22,18,Overcast.,14,350,83,1013
1064
+ 20240922,12:00,18:00,22,20,Scattered clouds.,23,310,79,1011
1065
+ 20240922,18:00,00:00,20,19,Passing clouds.,14,310,87,1011
1066
+ 20240923,00:00,06:00,19,18,Low clouds.,13,330,98,1011
1067
+ 20240923,06:00,12:00,21,18,Fog.,12,330,94,1011
1068
+ 20240923,12:00,18:00,22,19,Scattered clouds.,24,320,85,1008
1069
+ 20240923,18:00,00:00,18,18,Passing clouds.,10,300,98,1010
1070
+ 20240924,00:00,06:00,19,18,Overcast.,4,30,93,1010
1071
+ 20240924,06:00,12:00,21,18,Overcast.,12,320,86,1010
1072
+ 20240924,12:00,18:00,22,19,Passing clouds.,18,300,77,1009
1073
+ 20240924,18:00,00:00,19,18,Passing clouds.,14,320,92,1010
1074
+ 20240925,00:00,06:00,18,18,Overcast.,11,320,92,1010
1075
+ 20240925,06:00,12:00,21,18,Partly sunny.,16,300,74,1011
1076
+ 20240925,12:00,18:00,21,19,Partly sunny.,20,310,73,1010
1077
+ 20240925,18:00,00:00,18,18,Passing clouds.,16,330,91,1010
1078
+ 20240926,00:00,06:00,18,18,Overcast.,10,310,92,1010
1079
+ 20240926,06:00,12:00,20,18,Overcast.,10,30,83,1012
1080
+ 20240926,12:00,18:00,21,19,Scattered clouds.,21,290,75,1011
1081
+ 20240926,18:00,00:00,19,18,Passing clouds.,16,330,89,1011
1082
+ 20240927,00:00,06:00,19,18,Low clouds.,11,350,85,1011
1083
+ 20240927,06:00,12:00,19,17,Overcast.,11,320,85,1012
1084
+ 20240927,12:00,18:00,21,19,Passing clouds.,19,310,77,1010
1085
+ 20240927,18:00,00:00,18,17,Passing clouds.,15,330,90,1010
1086
+ 20240928,00:00,06:00,17,16,Low clouds.,10,10,97,1010
1087
+ 20240928,06:00,12:00,19,17,Fog.,10,300,85,1012
1088
+ 20240928,12:00,18:00,21,19,Passing clouds.,21,320,78,1011
1089
+ 20240928,18:00,00:00,18,17,Passing clouds.,14,330,92,1012
1090
+ 20240929,00:00,06:00,17,17,Low clouds.,12,350,96,1012
1091
+ 20240929,06:00,12:00,19,16,Scattered clouds.,14,320,92,1013
1092
+ 20240929,12:00,18:00,21,18,Scattered clouds.,25,320,80,1011
1093
+ 20240929,18:00,00:00,18,16,Passing clouds.,14,320,94,1011
1094
+ 20240930,00:00,06:00,17,16,Low clouds.,8,0,96,1011
1095
+ 20240930,06:00,12:00,20,16,Fog.,8,310,82,1012
1096
+ 20240930,12:00,18:00,21,19,Passing clouds.,11,280,72,1011
1097
+ 20240930,18:00,00:00,19,18,Passing clouds.,5,200,86,1012
1098
+ 20241001,00:00,06:00,19,18,Fog.,8,350,88,1013
1099
+ 20241001,06:00,12:00,21,18,Fog.,14,320,86,1014
1100
+ 20241001,12:00,18:00,21,19,Scattered clouds.,21,310,84,1011
1101
+ 20241001,18:00,00:00,19,18,Passing clouds.,7,320,93,1012
1102
+ 20241002,00:00,06:00,18,17,Fog.,7,340,92,1011
1103
+ 20241002,06:00,12:00,22,16,Fog.,12,310,91,1010
1104
+ 20241002,12:00,18:00,22,18,Passing clouds.,15,310,82,1008
1105
+ 20241002,18:00,00:00,18,17,Fog.,5,130,96,1008
1106
+ 20241003,00:00,06:00,18,17,Fog.,10,140,97,1009
1107
+ 20241003,06:00,12:00,21,17,Fog.,10,170,86,1009
1108
+ 20241003,12:00,18:00,22,20,Partly sunny.,10,190,81,1008
1109
+ 20241003,18:00,00:00,20,19,Low clouds.,9,170,88,1010
1110
+ 20241004,00:00,06:00,19,19,Fog.,4,210,90,1011
1111
+ 20241004,06:00,12:00,22,18,Fog.,8,210,87,1013
1112
+ 20241004,12:00,18:00,22,20,Partly sunny.,9,200,85,1013
1113
+ 20241004,18:00,00:00,19,18,Fog.,6,310,95,1013
1114
+ 20241005,00:00,06:00,18,17,Fog.,10,320,100,1013
1115
+ 20241005,06:00,12:00,20,17,Fog.,6,270,93,1015
1116
+ 20241005,12:00,18:00,21,20,Fog.,13,280,89,1014
1117
+ 20241005,18:00,00:00,,,Not Available,,,,
1118
+ 20241006,00:00,06:00,,,Not Available,,,,
1119
+ 20241006,06:00,12:00,,,Not Available,,,,
1120
+ 20241006,12:00,18:00,20,18,Partly sunny.,14,310,92,1012
1121
+ 20241006,18:00,00:00,18,16,Fog.,12,340,98,1013
1122
+ 20241007,00:00,06:00,16,16,Fog.,9,340,67,1012
1123
+ 20241007,06:00,12:00,21,16,Fog.,9,340,92,1012
1124
+ 20241007,12:00,18:00,21,18,Scattered clouds.,19,310,85,1010
1125
+ 20241007,18:00,00:00,18,17,Passing clouds.,12,330,95,1010
1126
+ 20241008,00:00,06:00,17,15,Fog.,11,340,97,1010
1127
+ 20241008,06:00,12:00,20,15,Fog.,13,330,89,1011
1128
+ 20241008,12:00,18:00,21,18,Scattered clouds.,18,300,86,1010
1129
+ 20241008,18:00,00:00,17,17,Passing clouds.,6,320,96,1012
1130
+ 20241009,00:00,06:00,17,17,Low clouds.,5,150,95,1013
1131
+ 20241009,06:00,12:00,18,17,Fog.,9,280,85,1014
1132
+ 20241009,12:00,18:00,21,19,Scattered clouds.,14,280,79,1013
1133
+ 20241009,18:00,00:00,17,17,Low clouds.,5,310,87,1014
1134
+ 20241010,00:00,06:00,17,17,Passing clouds.,6,80,94,1015
1135
+ 20241010,06:00,12:00,21,17,Fog.,9,320,82,1016
1136
+ 20241010,12:00,18:00,22,20,Passing clouds.,20,320,70,1014
1137
+ 20241010,18:00,00:00,19,18,Passing clouds.,13,330,88,1015
1138
+ 20241011,00:00,06:00,17,17,Fog.,10,340,96,1015
1139
+ 20241011,06:00,12:00,22,15,Fog.,7,340,85,1017
1140
+ 20241011,12:00,18:00,22,19,Passing clouds.,22,320,79,1015
1141
+ 20241011,18:00,00:00,18,16,Fog.,13,330,97,1017
1142
+ 20241012,00:00,06:00,16,16,Fog.,11,320,100,1017
1143
+ 20241012,06:00,12:00,21,15,Fog.,12,330,89,1018
1144
+ 20241012,12:00,18:00,21,19,Scattered clouds.,20,320,74,1016
1145
+ 20241012,18:00,00:00,18,17,Passing clouds.,9,340,91,1017
1146
+ 20241013,00:00,06:00,17,16,Overcast.,3,290,92,1016
1147
+ 20241013,06:00,12:00,19,16,Passing clouds.,6,110,82,1017
1148
+ 20241013,12:00,18:00,20,18,Sunny.,11,260,73,1016
1149
+ 20241013,18:00,00:00,18,16,Fog.,1,260,91,1017
1150
+ 20241014,00:00,06:00,17,15,Fog.,4,270,91,1017
1151
+ 20241014,06:00,12:00,19,17,Partly sunny.,6,80,79,1018
1152
+ 20241014,12:00,18:00,20,18,Passing clouds.,12,200,81,1017
1153
+ 20241014,18:00,00:00,18,18,Overcast.,6,180,86,1017
1154
+ 20241015,00:00,06:00,18,18,Overcast.,2,220,83,1017
1155
+ 20241015,06:00,12:00,18,18,Overcast.,9,270,81,1017
1156
+ 20241015,12:00,18:00,19,18,Partly sunny.,11,190,78,1015
1157
+ 20241015,18:00,00:00,18,17,Overcast.,4,160,86,1016
1158
+ 20241016,00:00,06:00,18,17,Overcast.,6,200,83,1015
1159
+ 20241016,06:00,12:00,18,17,Overcast.,6,170,84,1015
1160
+ 20241016,12:00,18:00,18,18,Overcast.,6,170,82,1013
1161
+ 20241016,18:00,00:00,18,17,Overcast.,4,210,88,1012
1162
+ 20241017,00:00,06:00,17,17,Overcast.,6,160,87,1011
1163
+ 20241017,06:00,12:00,19,17,Partly sunny.,6,190,92,1012
1164
+ 20241017,12:00,18:00,20,19,Partly sunny.,12,210,84,1010
1165
+ 20241017,18:00,00:00,18,17,Partly cloudy.,10,250,93,1010
1166
+ 20241018,00:00,06:00,18,16,Partly cloudy.,10,250,84,1011
1167
+ 20241018,06:00,12:00,19,15,Passing clouds.,7,180,76,1013
1168
+ 20241018,12:00,18:00,21,19,Sunny.,16,280,65,1013
1169
+ 20241018,18:00,00:00,19,16,Clear.,6,340,73,1015
1170
+ 20241019,00:00,06:00,14,13,Clear.,2,110,97,1015
1171
+ 20241019,06:00,12:00,23,12,Passing clouds.,3,210,57,1018
1172
+ 20241019,12:00,18:00,23,21,Passing clouds.,15,330,40,1016
1173
+ 20241019,18:00,00:00,21,16,Clear.,7,350,55,1017
1174
+ 20241020,00:00,06:00,16,14,Clear.,3,60,56,1017
1175
+ 20241020,06:00,12:00,25,16,Sunny.,4,310,38,1019
1176
+ 20241020,12:00,18:00,26,22,Sunny.,23,320,33,1017
1177
+ 20241020,18:00,00:00,21,17,Clear.,4,350,59,1018
1178
+ 20241021,00:00,06:00,16,14,Clear.,2,350,74,1017
1179
+ 20241021,06:00,12:00,24,14,Scattered clouds.,5,330,44,1018
1180
+ 20241021,12:00,18:00,24,21,Scattered clouds.,17,310,53,1016
1181
+ 20241021,18:00,00:00,20,17,Passing clouds.,6,310,86,1016
1182
+ 20241022,00:00,06:00,16,15,Passing clouds.,2,310,83,1016
1183
+ 20241022,06:00,12:00,22,14,Passing clouds.,6,310,69,1017
1184
+ 20241022,12:00,18:00,23,21,Passing clouds.,16,310,72,1015
1185
+ 20241022,18:00,00:00,19,17,Passing clouds.,4,330,95,1016
1186
+ 20241023,00:00,06:00,17,15,Passing clouds.,6,0,94,1016
1187
+ 20241023,06:00,12:00,23,16,Passing clouds.,4,310,67,1017
1188
+ 20241023,12:00,18:00,24,22,Passing clouds.,9,320,51,1015
1189
+ 20241023,18:00,00:00,21,16,Passing clouds.,5,320,78,1015
1190
+ 20241024,00:00,06:00,17,14,Fog.,2,90,92,1014
1191
+ 20241024,06:00,12:00,22,15,Fog.,2,180,80,1014
1192
+ 20241024,12:00,18:00,22,21,Scattered clouds.,10,210,66,1012
1193
+ 20241024,18:00,00:00,19,17,Fog.,2,280,84,1013
1194
+ 20241025,00:00,06:00,17,16,Fog.,0,0,94,1013
1195
+ 20241025,06:00,12:00,19,14,Fog.,4,200,97,1016
1196
+ 20241025,12:00,18:00,21,19,Scattered clouds.,11,280,78,1015
1197
+ 20241025,18:00,00:00,18,16,Passing clouds.,9,330,94,1017
1198
+ 20241026,00:00,06:00,16,13,Fog.,10,350,100,1016
1199
+ 20241026,06:00,12:00,21,13,Scattered clouds.,9,350,84,1017
1200
+ 20241026,12:00,18:00,21,20,Scattered clouds.,16,310,72,1016
1201
+ 20241026,18:00,00:00,19,16,Passing clouds.,7,290,93,1017
1202
+ 20241027,00:00,06:00,16,15,Fog.,7,10,81,1016
1203
+ 20241027,06:00,12:00,21,14,Fog.,3,160,86,1017
1204
+ 20241027,12:00,18:00,22,19,Scattered clouds.,11,150,78,1015
1205
+ 20241027,18:00,00:00,19,16,Fog.,2,140,91,1015
1206
+ 20241028,00:00,06:00,18,16,Clear.,2,270,100,1014
1207
+ 20241028,06:00,12:00,19,17,Fog.,7,280,95,1015
1208
+ 20241028,12:00,18:00,21,18,Broken clouds.,20,260,66,1014
1209
+ 20241028,18:00,00:00,17,17,Passing clouds.,19,270,74,1013
1210
+ 20241029,00:00,06:00,17,16,Partly cloudy.,17,280,82,1013
1211
+ 20241029,06:00,12:00,19,16,Scattered clouds.,17,270,70,1014
1212
+ 20241029,12:00,18:00,18,17,Scattered clouds.,14,240,64,1014
1213
+ 20241029,18:00,00:00,17,14,Passing clouds.,6,110,82,1016
1214
+ 20241030,00:00,06:00,12,11,Clear.,7,100,89,1017
1215
+ 20241030,06:00,12:00,19,11,Passing clouds.,8,100,73,1020
1216
+ 20241030,12:00,18:00,21,18,Passing clouds.,23,310,62,1018
1217
+ 20241030,18:00,00:00,17,14,Clear.,3,320,89,1019
1218
+ 20241031,00:00,06:00,15,10,Passing clouds.,3,100,84,1018
1219
+ 20241031,06:00,12:00,20,10,Passing clouds.,5,90,61,1018
1220
+ 20241031,12:00,18:00,20,17,Scattered clouds.,19,310,67,1016
1221
+ 20241031,18:00,00:00,17,14,Passing clouds.,5,330,88,1016
1222
+ 20241101,00:00,06:00,14,11,Clear.,4,80,87,1015
1223
+ 20241101,06:00,12:00,18,11,Passing clouds.,4,160,71,1015
1224
+ 20241101,12:00,18:00,19,17,Passing clouds.,13,290,72,1013
1225
+ 20241101,18:00,00:00,16,14,Passing clouds.,6,100,88,1014
1226
+ 20241102,00:00,06:00,14,13,Passing clouds.,4,90,85,1013
1227
+ 20241102,06:00,12:00,18,13,Broken clouds.,7,170,79,1015
1228
+ 20241102,12:00,18:00,18,17,Scattered clouds.,11,210,73,1013
1229
+ 20241102,18:00,00:00,18,16,Mostly cloudy.,14,280,88,1013
1230
+ 20241103,00:00,06:00,16,14,Overcast.,6,250,91,1011
1231
+ 20241103,06:00,12:00,18,14,Scattered clouds.,11,80,84,1011
1232
+ 20241103,12:00,18:00,19,17,Passing clouds.,19,320,65,1010
1233
+ 20241103,18:00,00:00,17,13,Clear.,4,0,84,1013
1234
+ 20241104,00:00,06:00,12,11,Clear.,4,90,92,1015
1235
+ 20241104,06:00,12:00,21,11,Sunny.,6,90,62,1018
1236
+ 20241104,12:00,18:00,21,18,Sunny.,17,320,61,1016
1237
+ 20241104,18:00,00:00,16,13,Clear.,2,350,74,1017
1238
+ 20241105,00:00,06:00,13,11,Clear.,2,350,71,1016
1239
+ 20241105,06:00,12:00,23,11,Scattered clouds.,3,330,42,1016
1240
+ 20241105,12:00,18:00,22,17,Scattered clouds.,11,280,59,1013
1241
+ 20241105,18:00,00:00,16,13,Passing clouds.,5,110,87,1010
1242
+ 20241106,00:00,06:00,13,12,Passing clouds.,2,330,66,1009
1243
+ 20241106,06:00,12:00,24,12,Scattered clouds.,7,50,41,1012
1244
+ 20241106,12:00,18:00,24,18,Scattered clouds.,11,90,16,1012
1245
+ 20241106,18:00,00:00,18,13,Passing clouds.,6,90,23,1015
1246
+ 20241107,00:00,06:00,14,11,Passing clouds.,7,10,38,1016
1247
+ 20241107,06:00,12:00,22,12,Sunny.,6,30,23,1019
1248
+ 20241107,12:00,18:00,22,17,Sunny.,19,280,34,1018
1249
+ 20241107,18:00,00:00,16,12,Clear.,3,310,71,1021
1250
+ 20241108,00:00,06:00,12,10,Clear.,3,350,60,1020
1251
+ 20241108,06:00,12:00,22,11,Sunny.,5,0,27,1020
1252
+ 20241108,12:00,18:00,21,16,Sunny.,15,300,36,1017
1253
+ 20241108,18:00,00:00,14,11,Clear.,2,280,75,1017
1254
+ 20241109,00:00,06:00,12,10,Clear.,4,0,60,1015
1255
+ 20241109,06:00,12:00,21,11,Sunny.,1,240,38,1016
1256
+ 20241109,12:00,18:00,22,17,Sunny.,17,320,36,1013
1257
+ 20241109,18:00,00:00,16,12,Passing clouds.,2,260,71,1014
1258
+ 20241110,00:00,06:00,12,9,Clear.,1,340,77,1015
1259
+ 20241110,06:00,12:00,22,10,Passing clouds.,4,160,50,1016
1260
+ 20241110,12:00,18:00,22,16,Passing clouds.,10,280,72,1015
1261
+ 20241110,18:00,00:00,16,13,Clear.,3,280,88,1016
1262
+ 20241111,00:00,06:00,12,9,Fog.,1,310,88,1017
1263
+ 20241111,06:00,12:00,19,9,Sunny.,7,340,70,1018
1264
+ 20241111,12:00,18:00,19,17,Sunny.,13,280,79,1016
1265
+ 20241111,18:00,00:00,16,13,Fog.,4,330,97,1017
1266
+ 20241112,00:00,06:00,15,14,Fog.,2,100,99,1017
1267
+ 20241112,06:00,12:00,19,14,Passing clouds.,5,300,80,1018
1268
+ 20241112,12:00,18:00,18,16,Passing clouds.,20,330,64,1016
1269
+ 20241112,18:00,00:00,16,13,Clear.,6,340,81,1018
1270
+ 20241113,00:00,06:00,13,9,Clear.,1,340,80,1017
1271
+ 20241113,06:00,12:00,24,12,Sunny.,5,210,45,1019
1272
+ 20241113,12:00,18:00,22,17,Sunny.,18,320,43,1016
1273
+ 20241113,18:00,00:00,15,11,Clear.,2,330,67,1017
1274
+ 20241114,00:00,06:00,12,8,Clear.,1,30,76,1015
1275
+ 20241114,06:00,12:00,20,10,Sunny.,6,40,53,1015
1276
+ 20241114,12:00,18:00,20,16,Scattered clouds.,13,280,75,1012
1277
+ 20241114,18:00,00:00,16,14,Passing clouds.,12,290,84,1013
1278
+ 20241115,00:00,06:00,15,14,Partly cloudy.,18,280,74,1013
1279
+ 20241115,06:00,12:00,18,14,Partly sunny.,26,300,64,1014
1280
+ 20241115,12:00,18:00,16,14,Scattered clouds.,22,300,62,1013
1281
+ 20241115,18:00,00:00,14,13,Passing clouds.,15,280,72,1013
1282
+ 20241116,00:00,06:00,13,10,Passing clouds.,8,280,83,1012
1283
+ 20241116,06:00,12:00,17,11,Scattered clouds.,9,90,70,1014
1284
+ 20241116,12:00,18:00,17,14,Passing clouds.,19,320,57,1013
1285
+ 20241116,18:00,00:00,14,11,Clear.,3,10,71,1015
1286
+ 20241117,00:00,06:00,9,7,Clear.,3,100,74,1015
1287
+ 20241117,06:00,12:00,17,8,Sunny.,7,100,60,1015
1288
+ 20241117,12:00,18:00,18,14,Sunny.,14,300,56,1014
1289
+ 20241117,18:00,00:00,13,10,Clear.,2,110,88,1015
1290
+ 20241118,00:00,06:00,12,9,Clear.,8,110,70,1015
1291
+ 20241118,06:00,12:00,17,11,Scattered clouds.,15,140,62,1016
1292
+ 20241118,12:00,18:00,17,14,Scattered clouds.,13,180,82,1015
1293
+ 20241118,18:00,00:00,13,12,Passing clouds.,9,110,93,1016
1294
+ 20241119,00:00,06:00,12,12,Passing clouds.,4,90,82,1017
1295
+ 20241119,06:00,12:00,17,8,Scattered clouds.,10,310,72,1018
1296
+ 20241119,12:00,18:00,18,14,Scattered clouds.,23,320,70,1016
1297
+ 20241119,18:00,00:00,14,12,Passing clouds.,5,30,84,1019
1298
+ 20241120,00:00,06:00,12,8,Clear.,4,0,76,1020
1299
+ 20241120,06:00,12:00,19,9,Sunny.,4,180,49,1022
1300
+ 20241120,12:00,18:00,21,16,Sunny.,14,320,37,1020
1301
+ 20241120,18:00,00:00,15,12,Clear.,10,330,70,1020
1302
+ 20241121,00:00,06:00,12,9,Passing clouds.,6,330,77,1020
1303
+ 20241121,06:00,12:00,19,8,Passing clouds.,8,320,52,1021
1304
+ 20241121,12:00,18:00,19,15,Passing clouds.,20,320,62,1018
1305
+ 20241121,18:00,00:00,13,11,Passing clouds.,8,0,83,1019
1306
+ 20241122,00:00,06:00,10,8,Passing clouds.,1,330,84,1018
1307
+ 20241122,06:00,12:00,18,9,Passing clouds.,6,340,79,1019
1308
+ 20241122,12:00,18:00,17,14,Passing clouds.,19,320,83,1016
1309
+ 20241122,18:00,00:00,13,10,Clear.,5,320,99,1017
1310
+ 20241123,00:00,06:00,13,9,Low clouds.,4,30,79,1016
1311
+ 20241123,06:00,12:00,18,11,Broken clouds.,7,330,85,1017
1312
+ 20241123,12:00,18:00,17,15,Scattered clouds.,17,320,71,1015
1313
+ 20241123,18:00,00:00,15,14,Fog.,4,130,94,1016
1314
+ 20241124,00:00,06:00,14,14,Fog.,5,130,100,1016
1315
+ 20241124,06:00,12:00,17,14,Fog.,5,200,94,1018
1316
+ 20241124,12:00,18:00,17,15,Partly sunny.,19,320,84,1018
1317
+ 20241124,18:00,00:00,14,12,Passing clouds.,9,0,91,1020
1318
+ 20241125,00:00,06:00,12,11,Clear.,2,330,100,1020
1319
+ 20241125,06:00,12:00,22,12,Partly sunny.,7,350,71,1021
1320
+ 20241125,12:00,18:00,20,17,Scattered clouds.,22,320,57,1019
1321
+ 20241125,18:00,00:00,17,13,Passing clouds.,7,10,68,1020
1322
+ 20241126,00:00,06:00,14,11,Passing clouds.,2,30,86,1019
1323
+ 20241126,06:00,12:00,19,11,Partly sunny.,6,180,72,1020
1324
+ 20241126,12:00,18:00,19,17,Partly sunny.,18,340,67,1018
1325
+ 20241126,18:00,00:00,16,16,Mostly cloudy.,10,310,82,1018
1326
+ 20241127,00:00,06:00,15,14,Partly cloudy.,2,320,87,1017
1327
+ 20241127,06:00,12:00,19,14,Partly sunny.,6,0,87,1018
1328
+ 20241127,12:00,18:00,18,14,Scattered clouds.,17,320,94,1015
1329
+ 20241127,18:00,00:00,14,14,Fog.,9,330,100,1017
1330
+ 20241128,00:00,06:00,14,13,Fog.,8,0,92,1016
1331
+ 20241128,06:00,12:00,16,13,Fog.,9,10,84,1017
1332
+ 20241128,12:00,18:00,18,14,Sunny.,17,300,83,1015
1333
+ 20241128,18:00,00:00,14,13,Fog.,3,350,97,1016
1334
+ 20241129,00:00,06:00,13,12,Clear.,3,350,83,1016
1335
+ 20241129,06:00,12:00,22,13,Sunny.,4,350,46,1016
1336
+ 20241129,12:00,18:00,22,18,Sunny.,11,280,36,1015
1337
+ 20241129,18:00,00:00,17,11,Clear.,5,10,78,1017
1338
+ 20241130,00:00,06:00,12,9,Clear.,3,0,76,1016
1339
+ 20241130,06:00,12:00,22,10,Sunny.,5,320,38,1017
1340
+ 20241130,12:00,18:00,21,15,Sunny.,6,200,48,1017
1341
+ 20241130,18:00,00:00,14,13,Clear.,5,170,94,1018
1342
+ 20241201,00:00,06:00,13,12,Clear.,1,40,86,1018
1343
+ 20241201,06:00,12:00,21,12,Sunny.,4,290,52,1020
1344
+ 20241201,12:00,18:00,21,16,Sunny.,11,300,62,1018
1345
+ 20241201,18:00,00:00,15,12,Clear.,5,10,96,1020
1346
+ 20241202,00:00,06:00,11,9,Clear.,3,70,88,1020
1347
+ 20241202,06:00,12:00,19,9,Scattered clouds.,6,310,62,1020
1348
+ 20241202,12:00,18:00,19,15,Scattered clouds.,16,310,63,1018
1349
+ 20241202,18:00,00:00,14,12,Passing clouds.,5,350,87,1019
1350
+ 20241203,00:00,06:00,13,10,Passing clouds.,2,80,81,1019
1351
+ 20241203,06:00,12:00,15,10,Scattered clouds.,4,170,87,1020
1352
+ 20241203,12:00,18:00,16,13,Scattered clouds.,9,210,96,1019
1353
+ 20241203,18:00,00:00,14,13,Passing clouds.,4,130,96,1021
1354
+ 20241204,00:00,06:00,14,13,Passing clouds.,0,0,88,1021
1355
+ 20241204,06:00,12:00,16,13,Passing clouds.,6,330,77,1022
1356
+ 20241204,12:00,18:00,17,14,Passing clouds.,14,300,77,1020
1357
+ 20241204,18:00,00:00,13,12,Passing clouds.,5,340,90,1020
1358
+ 20241205,00:00,06:00,13,12,Fog.,8,30,89,1020
1359
+ 20241205,06:00,12:00,16,12,Fog.,8,50,87,1021
1360
+ 20241205,12:00,18:00,16,13,Haze.,14,310,80,1018
1361
+ 20241205,18:00,00:00,13,12,Fog.,8,10,95,1019
1362
+ 20241206,00:00,06:00,12,12,Fog.,2,340,93,1018
1363
+ 20241206,06:00,12:00,18,9,Fog.,10,320,88,1019
1364
+ 20241206,12:00,18:00,17,14,Haze.,14,320,87,1016
1365
+ 20241206,18:00,00:00,13,11,Fog.,1,350,97,1018
1366
+ 20241207,00:00,06:00,11,9,Fog.,1,10,87,1018
1367
+ 20241207,06:00,12:00,25,8,Sunny.,6,340,49,1019
1368
+ 20241207,12:00,18:00,26,17,Sunny.,10,320,20,1017
1369
+ 20241207,18:00,00:00,14,11,Clear.,0,0,74,1018
1370
+ 20241208,00:00,06:00,11,8,Clear.,5,120,85,1018
1371
+ 20241208,06:00,12:00,13,11,Fog.,6,190,86,1019
1372
+ 20241208,12:00,18:00,14,13,Fog.,8,230,95,1017
1373
+ 20241208,18:00,00:00,14,13,Overcast.,5,140,92,1019
1374
+ 20241209,00:00,06:00,13,12,Fog.,7,90,92,1019
1375
+ 20241209,06:00,12:00,16,13,Passing clouds.,7,140,79,1020
1376
+ 20241209,12:00,18:00,16,13,Passing clouds.,15,310,78,1018
1377
+ 20241209,18:00,00:00,13,12,Clear.,8,0,89,1021
1378
+ 20241210,00:00,06:00,11,8,Clear.,5,0,77,1023
1379
+ 20241210,06:00,12:00,21,8,Sunny.,8,280,35,1025
1380
+ 20241210,12:00,18:00,21,16,Passing clouds.,15,280,30,1023
1381
+ 20241210,18:00,00:00,15,8,Passing clouds.,4,100,48,1024
1382
+ 20241211,00:00,06:00,10,8,Passing clouds.,3,340,46,1022
1383
+ 20241211,06:00,12:00,21,8,Partly sunny.,8,10,24,1020
1384
+ 20241211,12:00,18:00,19,16,Partly sunny.,17,340,34,1015
1385
+ 20241211,18:00,00:00,15,11,Passing clouds.,4,330,74,1015
1386
+ 20241212,00:00,06:00,11,7,Passing clouds.,1,250,85,1014
1387
+ 20241212,06:00,12:00,16,8,Broken clouds.,7,190,74,1016
1388
+ 20241212,12:00,18:00,17,14,Scattered clouds.,11,200,79,1015
1389
+ 20241212,18:00,00:00,14,13,Passing clouds.,8,290,93,1018
1390
+ 20241213,00:00,06:00,13,12,Partly cloudy.,3,110,89,1019
1391
+ 20241213,06:00,12:00,17,13,Scattered clouds.,8,180,75,1022
1392
+ 20241213,12:00,18:00,17,14,Scattered clouds.,15,210,82,1021
1393
+ 20241213,18:00,00:00,14,11,Passing clouds.,5,10,91,1022
1394
+ 20241214,00:00,06:00,11,9,Clear.,1,320,83,1021
1395
+ 20241214,06:00,12:00,17,10,Partly sunny.,8,310,73,1023
1396
+ 20241214,12:00,18:00,18,14,Partly sunny.,19,320,79,1021
1397
+ 20241214,18:00,00:00,14,11,Passing clouds.,2,350,94,1022
1398
+ 20241215,00:00,06:00,13,9,Overcast.,2,340,96,1021
1399
+ 20241215,06:00,12:00,16,9,Passing clouds.,5,110,76,1022
1400
+ 20241215,12:00,18:00,17,14,Sunny.,18,340,79,1020
1401
+ 20241215,18:00,00:00,13,10,Clear.,8,330,97,1021
1402
+ 20241216,00:00,06:00,10,8,Passing clouds.,3,40,86,1019
1403
+ 20241216,06:00,12:00,18,8,Partly sunny.,6,30,81,1020
1404
+ 20241216,12:00,18:00,17,14,Scattered clouds.,15,310,77,1019
1405
+ 20241216,18:00,00:00,15,11,Passing clouds.,2,310,88,1020
1406
+ 20241217,00:00,06:00,11,8,Passing clouds.,0,0,85,1019
1407
+ 20241217,06:00,12:00,18,9,Scattered clouds.,5,320,75,1020
1408
+ 20241217,12:00,18:00,19,15,Passing clouds.,15,290,72,1017
1409
+ 20241217,18:00,00:00,15,12,Passing clouds.,8,320,84,1019
1410
+ 20241218,00:00,06:00,12,8,Passing clouds.,3,350,71,1019
1411
+ 20241218,06:00,12:00,15,12,Fog.,6,180,83,1020
1412
+ 20241218,12:00,18:00,16,13,Fog.,12,180,86,1018
1413
+ 20241218,18:00,00:00,13,10,Fog.,4,330,97,1019
1414
+ 20241219,00:00,06:00,10,10,Fog.,2,150,99,1019
1415
+ 20241219,06:00,12:00,21,9,Fog.,3,310,76,1020
1416
+ 20241219,12:00,18:00,21,11,Fog.,11,200,86,1019
1417
+ 20241219,18:00,00:00,11,9,Fog.,2,190,100,1019
1418
+ 20241220,00:00,06:00,10,8,Fog.,3,10,100,1020
1419
+ 20241220,06:00,12:00,17,8,Fog.,1,310,87,1022
1420
+ 20241220,12:00,18:00,17,13,Scattered clouds.,12,330,82,1020
1421
+ 20241220,18:00,00:00,13,11,Fog.,7,0,62,1022
1422
+ 20241221,00:00,06:00,11,10,Fog.,9,40,36,1022
1423
+ 20241221,06:00,12:00,14,10,Fog.,8,340,87,1022
1424
+ 20241221,12:00,18:00,17,14,Broken clouds.,21,340,79,1020
1425
+ 20241221,18:00,00:00,14,10,Fog.,7,320,94,1021
1426
+ 20241222,00:00,06:00,10,9,Fog.,3,290,100,1020
1427
+ 20241222,06:00,12:00,16,9,Fog.,1,40,87,1021
1428
+ 20241222,12:00,18:00,17,14,Broken clouds.,12,290,87,1019
1429
+ 20241222,18:00,00:00,15,14,Fog.,2,300,97,1020
1430
+ 20241223,00:00,06:00,14,13,Fog.,1,50,82,1020
1431
+ 20241223,06:00,12:00,16,13,Partly sunny.,7,320,90,1020
1432
+ 20241223,12:00,18:00,17,14,Partly sunny.,16,320,89,1019
1433
+ 20241223,18:00,00:00,15,13,Fog.,10,350,85,1020
1434
+ 20241224,00:00,06:00,13,12,Fog.,4,340,95,1018
1435
+ 20241224,06:00,12:00,13,12,Fog.,9,140,77,1020
1436
+ 20241224,12:00,18:00,14,13,Fog.,8,180,83,1018
1437
+ 20241224,18:00,00:00,14,12,Fog.,11,260,98,1018
1438
+ 20241225,00:00,06:00,13,11,Fog.,5,90,100,1018
1439
+ 20241225,06:00,12:00,16,10,Fog.,8,210,94,1019
1440
+ 20241225,12:00,18:00,17,13,Fog.,17,320,74,1017
1441
+ 20241225,18:00,00:00,13,11,Fog.,8,320,93,1018
1442
+ 20241226,00:00,06:00,11,8,Clear.,1,300,96,1018
1443
+ 20241226,06:00,12:00,15,8,Sunny.,4,100,80,1019
1444
+ 20241226,12:00,18:00,15,12,Sunny.,6,180,93,1017
1445
+ 20241226,18:00,00:00,12,10,Fog.,3,110,76,1018
1446
+ 20241227,00:00,06:00,11,9,Passing clouds.,1,110,86,1018
1447
+ 20241227,06:00,12:00,14,9,Partly sunny.,5,140,77,1019
1448
+ 20241227,12:00,18:00,15,14,Partly sunny.,8,180,95,1018
1449
+ 20241227,18:00,00:00,16,14,Fog.,3,100,99,1019
1450
+ 20241228,00:00,06:00,14,14,Overcast.,4,340,99,1018
1451
+ 20241228,06:00,12:00,16,14,Low clouds.,7,340,79,1020
1452
+ 20241228,12:00,18:00,17,14,Partly sunny.,14,320,77,1019
1453
+ 20241228,18:00,00:00,13,9,Fog.,2,340,95,1020
1454
+ 20241229,00:00,06:00,12,9,Fog.,2,350,75,1019
1455
+ 20241229,06:00,12:00,15,12,Fog.,5,320,91,1021
1456
+ 20241229,12:00,18:00,15,13,Haze.,20,310,89,1019
1457
+ 20241229,18:00,00:00,13,10,Fog.,5,350,97,1020
1458
+ 20241230,00:00,06:00,12,11,Fog.,3,10,88,1019
1459
+ 20241230,06:00,12:00,15,12,Overcast.,3,350,88,1018
1460
+ 20241230,12:00,18:00,16,13,Scattered clouds.,16,310,85,1016
1461
+ 20241230,18:00,00:00,15,11,Passing clouds.,0,0,86,1017
1462
+ 20241231,00:00,06:00,14,13,Overcast.,3,40,83,1017
1463
+ 20241231,06:00,12:00,14,11,Fog.,6,110,92,1018
1464
+ 20241231,12:00,18:00,14,12,Sunny.,8,230,84,1017
1465
+ 20241231,18:00,00:00,12,11,Fog.,8,0,98,1018
weather/san-diego/raw_data/daily_weather_2025.csv ADDED
@@ -0,0 +1,792 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ date,start_time,end_time,temp_high,temp_low,weather,wind_speed,wind_dir,humidity,pressure
2
+ 20250101,00:00,06:00,12,11,Fog.,8,350,100,1018
3
+ 20250101,06:00,12:00,13,8,Fog.,5,310,94,1019
4
+ 20250101,12:00,18:00,14,12,Sunny.,16,320,87,1018
5
+ 20250101,18:00,00:00,12,9,Fog.,5,330,98,1019
6
+ 20250102,00:00,06:00,10,7,Fog.,5,350,90,1019
7
+ 20250102,06:00,12:00,21,7,Sunny.,6,350,70,1019
8
+ 20250102,12:00,18:00,21,13,Sunny.,7,310,61,1017
9
+ 20250102,18:00,00:00,12,11,Fog.,4,150,70,1018
10
+ 20250103,00:00,06:00,11,9,Fog.,4,10,93,1017
11
+ 20250103,06:00,12:00,14,9,Fog.,6,10,91,1019
12
+ 20250103,12:00,18:00,16,12,Broken clouds.,13,190,83,1017
13
+ 20250103,18:00,00:00,13,11,Fog.,5,160,87,1018
14
+ 20250104,00:00,06:00,11,8,Fog.,3,110,98,1018
15
+ 20250104,06:00,12:00,16,11,Fog.,8,90,74,1020
16
+ 20250104,12:00,18:00,16,14,Partly sunny.,16,320,71,1018
17
+ 20250104,18:00,00:00,14,13,Passing clouds.,8,0,73,1019
18
+ 20250105,00:00,06:00,9,9,Fog.,6,330,100,1019
19
+ 20250105,06:00,12:00,22,12,Passing clouds.,5,20,58,1020
20
+ 20250105,12:00,18:00,22,16,Scattered clouds.,14,340,29,1018
21
+ 20250105,18:00,00:00,14,12,Passing clouds.,5,0,84,1019
22
+ 20250106,00:00,06:00,11,9,Clear.,6,0,69,1019
23
+ 20250106,06:00,12:00,21,10,Passing clouds.,4,180,43,1019
24
+ 20250106,12:00,18:00,21,13,Scattered clouds.,8,130,65,1016
25
+ 20250106,18:00,00:00,15,14,Passing clouds.,13,180,83,1015
26
+ 20250107,00:00,06:00,15,14,Partly cloudy.,13,110,74,1013
27
+ 20250107,06:00,12:00,22,14,Scattered clouds.,6,20,58,1014
28
+ 20250107,12:00,18:00,20,17,Scattered clouds.,13,290,58,1012
29
+ 20250107,18:00,00:00,19,14,Passing clouds.,13,350,35,1015
30
+ 20250108,00:00,06:00,14,13,Passing clouds.,14,340,32,1015
31
+ 20250108,06:00,12:00,20,14,Scattered clouds.,16,10,28,1018
32
+ 20250108,12:00,18:00,21,18,Passing clouds.,27,320,26,1016
33
+ 20250108,18:00,00:00,16,12,Clear.,6,110,48,1018
34
+ 20250109,00:00,06:00,11,7,Clear.,5,0,52,1018
35
+ 20250109,06:00,12:00,18,6,Sunny.,3,150,38,1019
36
+ 20250109,12:00,18:00,19,14,Passing clouds.,7,290,32,1018
37
+ 20250109,18:00,00:00,12,10,Clear.,4,320,62,1022
38
+ 20250110,00:00,06:00,16,12,Clear.,10,350,25,1024
39
+ 20250110,06:00,12:00,18,15,Sunny.,9,70,24,1026
40
+ 20250110,12:00,18:00,18,16,Sunny.,14,290,45,1024
41
+ 20250110,18:00,00:00,14,11,Clear.,3,340,71,1023
42
+ 20250111,00:00,06:00,,,Not Available,,,,
43
+ 20250111,06:00,12:00,15,7,Passing clouds.,4,120,44,1018
44
+ 20250111,12:00,18:00,17,14,Sunny.,13,310,71,1014
45
+ 20250111,18:00,00:00,14,13,Clear.,3,10,72,1015
46
+ 20250112,00:00,06:00,,,Not Available,,,,
47
+ 20250112,06:00,12:00,18,7,Sunny.,6,20,51,1018
48
+ 20250112,12:00,18:00,19,14,Sunny.,14,290,32,1017
49
+ 20250112,18:00,00:00,12,10,Clear.,2,100,62,1019
50
+ 20250113,00:00,06:00,7,7,Clear.,9,340,53,1020
51
+ 20250113,06:00,12:00,18,7,Sunny.,8,340,34,1022
52
+ 20250113,12:00,18:00,19,14,Sunny.,16,320,25,1021
53
+ 20250113,18:00,00:00,14,8,Clear.,2,130,51,1024
54
+ 20250114,00:00,06:00,7,6,Clear.,7,330,51,1025
55
+ 20250114,06:00,12:00,17,7,Sunny.,5,60,35,1025
56
+ 20250114,12:00,18:00,19,18,Sunny.,18,270,14,1022
57
+ 20250114,18:00,00:00,17,10,Clear.,7,100,21,1023
58
+ 20250115,00:00,06:00,8,5,Clear.,4,20,45,1022
59
+ 20250115,06:00,12:00,19,4,Sunny.,4,0,33,1023
60
+ 20250115,12:00,18:00,21,14,Sunny.,15,330,25,1021
61
+ 20250115,18:00,00:00,12,8,Clear.,3,0,65,1022
62
+ 20250116,00:00,06:00,7,5,Clear.,0,0,70,1021
63
+ 20250116,06:00,12:00,14,6,Scattered clouds.,5,210,52,1021
64
+ 20250116,12:00,18:00,16,13,Broken clouds.,11,180,80,1020
65
+ 20250116,18:00,00:00,14,12,Passing clouds.,7,180,88,1022
66
+ 20250117,00:00,06:00,11,9,Passing clouds.,6,120,82,1023
67
+ 20250117,06:00,12:00,14,8,Scattered clouds.,7,120,74,1024
68
+ 20250117,12:00,18:00,14,12,Scattered clouds.,9,210,77,1022
69
+ 20250117,18:00,00:00,12,9,Passing clouds.,5,90,88,1023
70
+ 20250118,00:00,06:00,11,11,Mostly cloudy.,0,0,88,1023
71
+ 20250118,06:00,12:00,15,8,Passing clouds.,6,100,68,1024
72
+ 20250118,12:00,18:00,16,13,Passing clouds.,12,270,67,1022
73
+ 20250118,18:00,00:00,12,10,Clear.,4,300,90,1024
74
+ 20250119,00:00,06:00,,,Not Available,,,,
75
+ 20250119,06:00,12:00,16,10,Scattered clouds.,8,130,70,1023
76
+ 20250119,12:00,18:00,16,13,Scattered clouds.,18,290,73,1020
77
+ 20250119,18:00,00:00,13,13,Overcast.,10,260,73,1020
78
+ 20250120,00:00,06:00,13,13,Passing clouds.,6,10,77,1018
79
+ 20250120,06:00,12:00,16,11,Scattered clouds.,11,340,66,1020
80
+ 20250120,12:00,18:00,16,16,Scattered clouds.,22,320,53,1021
81
+ 20250120,18:00,00:00,16,13,Passing clouds.,12,0,65,1025
82
+ 20250121,00:00,06:00,14,8,Clear.,11,60,19,1029
83
+ 20250121,06:00,12:00,20,7,Scattered clouds.,7,100,19,1029
84
+ 20250121,12:00,18:00,18,16,Scattered clouds.,18,330,30,1025
85
+ 20250121,18:00,00:00,16,10,Passing clouds.,6,330,40,1025
86
+ 20250122,00:00,06:00,10,7,Passing clouds.,3,350,48,1023
87
+ 20250122,06:00,12:00,22,8,Partly sunny.,4,300,31,1023
88
+ 20250122,12:00,18:00,21,15,Partly sunny.,13,300,37,1021
89
+ 20250122,18:00,00:00,13,9,Passing clouds.,5,20,79,1023
90
+ 20250123,00:00,06:00,9,7,Passing clouds.,4,0,62,1023
91
+ 20250123,06:00,12:00,23,7,Passing clouds.,7,10,34,1024
92
+ 20250123,12:00,18:00,23,14,Passing clouds.,11,290,28,1022
93
+ 20250123,18:00,00:00,14,8,Passing clouds.,4,20,64,1022
94
+ 20250124,00:00,06:00,9,6,Passing clouds.,2,30,48,1020
95
+ 20250124,06:00,12:00,22,6,Broken clouds.,4,350,26,1018
96
+ 20250124,12:00,18:00,22,13,Broken clouds.,11,340,18,1014
97
+ 20250124,18:00,00:00,13,8,Passing clouds.,5,180,71,1014
98
+ 20250125,00:00,06:00,9,7,Clear.,3,140,45,1012
99
+ 20250125,06:00,12:00,16,8,Broken clouds.,16,160,63,1013
100
+ 20250125,12:00,18:00,16,14,Partly sunny.,13,210,73,1013
101
+ 20250125,18:00,00:00,15,14,Partly cloudy.,13,170,70,1015
102
+ 20250126,00:00,06:00,13,12,Overcast.,14,250,94,1016
103
+ 20250126,06:00,12:00,13,12,Broken clouds.,11,260,88,1019
104
+ 20250126,12:00,18:00,14,13,Broken clouds.,14,170,80,1017
105
+ 20250126,18:00,00:00,13,11,Mostly cloudy.,18,170,93,1017
106
+ 20250127,00:00,06:00,11,9,Passing clouds.,8,90,100,1018
107
+ 20250127,06:00,12:00,13,9,Broken clouds.,10,170,87,1019
108
+ 20250127,12:00,18:00,14,12,Scattered clouds.,10,260,63,1019
109
+ 20250127,18:00,00:00,12,9,Passing clouds.,4,340,70,1019
110
+ 20250128,00:00,06:00,8,7,Clear.,2,80,81,1019
111
+ 20250128,06:00,12:00,13,6,Scattered clouds.,6,160,81,1019
112
+ 20250128,12:00,18:00,14,12,Scattered clouds.,13,170,81,1017
113
+ 20250128,18:00,00:00,13,12,Partly cloudy.,6,230,78,1018
114
+ 20250129,00:00,06:00,12,11,Partly cloudy.,7,100,78,1019
115
+ 20250129,06:00,12:00,16,11,Scattered clouds.,11,140,69,1021
116
+ 20250129,12:00,18:00,16,13,Scattered clouds.,12,280,65,1019
117
+ 20250129,18:00,00:00,14,13,Passing clouds.,3,320,79,1021
118
+ 20250130,00:00,06:00,14,12,Passing clouds.,3,110,73,1023
119
+ 20250130,06:00,12:00,14,11,Scattered clouds.,6,160,69,1024
120
+ 20250130,12:00,18:00,23,14,Passing clouds.,16,300,55,1023
121
+ 20250130,18:00,00:00,12,9,Clear.,5,340,78,1024
122
+ 20250131,00:00,06:00,9,8,Clear.,1,70,80,1024
123
+ 20250131,06:00,12:00,13,7,Scattered clouds.,4,340,86,1025
124
+ 20250131,12:00,18:00,15,14,Partly sunny.,23,310,71,1022
125
+ 20250131,18:00,00:00,13,10,Passing clouds.,9,10,94,1023
126
+ 20250201,06:00,12:00,16,8,Passing clouds.,7,310,78,1021
127
+ 20250201,12:00,18:00,18,14,Passing clouds.,16,300,66,1019
128
+ 20250201,18:00,00:00,14,13,Clear.,5,340,92,1019
129
+ 20250202,00:00,06:00,,,Not Available,,,,
130
+ 20250202,06:00,12:00,17,11,Sunny.,7,340,80,1019
131
+ 20250202,12:00,18:00,17,15,Scattered clouds.,18,320,72,1016
132
+ 20250202,18:00,00:00,14,13,Fog.,20,340,92,1016
133
+ 20250203,00:00,06:00,11,11,Fog.,15,340,100,1015
134
+ 20250203,06:00,12:00,16,11,Fog.,14,330,95,1015
135
+ 20250203,12:00,18:00,15,13,Broken clouds.,23,320,92,1012
136
+ 20250203,18:00,00:00,14,13,Fog.,9,160,87,1014
137
+ 20250204,00:00,06:00,14,13,Partly cloudy.,8,100,84,1015
138
+ 20250204,06:00,12:00,14,12,Overcast.,6,310,89,1016
139
+ 20250204,12:00,18:00,15,14,Passing clouds.,11,190,86,1016
140
+ 20250204,18:00,00:00,13,12,Passing clouds.,5,140,87,1018
141
+ 20250205,00:00,06:00,12,10,Passing clouds.,1,100,84,1018
142
+ 20250205,06:00,12:00,18,13,Partly sunny.,5,190,70,1019
143
+ 20250205,12:00,18:00,19,16,Passing clouds.,13,270,72,1016
144
+ 20250205,18:00,00:00,16,14,Fog.,3,230,92,1017
145
+ 20250206,00:00,06:00,15,14,Fog.,2,170,89,1016
146
+ 20250206,06:00,12:00,17,14,Fog.,9,140,89,1019
147
+ 20250206,12:00,18:00,17,14,Fog.,11,200,88,1018
148
+ 20250206,18:00,00:00,17,14,Passing clouds.,7,110,86,1019
149
+ 20250207,00:00,06:00,16,15,Light rain. Fog.,11,150,88,1019
150
+ 20250207,06:00,12:00,15,14,Light rain. Fog.,5,210,100,1021
151
+ 20250207,12:00,18:00,15,14,Fog.,19,300,91,1020
152
+ 20250207,18:00,00:00,13,11,Passing clouds.,9,300,86,680
153
+ 20250208,00:00,06:00,12,10,Clear.,1,340,100,0
154
+ 20250208,06:00,12:00,16,10,Broken clouds.,8,350,79,816
155
+ 20250208,12:00,18:00,16,14,Partly sunny.,21,320,76,1018
156
+ 20250208,18:00,00:00,13,11,Passing clouds.,7,0,93,1018
157
+ 20250209,00:00,06:00,12,10,Clear.,5,290,99,1017
158
+ 20250209,06:00,12:00,17,10,Partly sunny.,6,320,74,1018
159
+ 20250209,12:00,18:00,17,17,Partly sunny.,15,320,60,1016
160
+ 20250209,18:00,00:00,,,Not Available,,,,
161
+ 20250210,00:00,06:00,11,11,Passing clouds.,0,0,100,1018
162
+ 20250210,06:00,12:00,15,11,Broken clouds.,10,110,85,1019
163
+ 20250210,12:00,18:00,15,13,Broken clouds.,13,260,62,1017
164
+ 20250210,18:00,00:00,13,12,Passing clouds.,8,190,58,1017
165
+ 20250211,00:00,06:00,12,12,Partly cloudy.,13,190,63,1015
166
+ 20250211,06:00,12:00,14,12,Partly sunny.,20,270,70,1016
167
+ 20250211,12:00,18:00,14,12,Partly sunny.,17,270,62,1014
168
+ 20250211,18:00,00:00,13,12,Partly cloudy.,9,190,75,1014
169
+ 20250212,00:00,06:00,13,12,Partly cloudy.,13,270,78,1014
170
+ 20250212,06:00,12:00,13,11,Light rain. Fog.,13,160,86,1016
171
+ 20250212,12:00,18:00,13,12,Light rain. Fog.,32,160,92,1014
172
+ 20250212,18:00,00:00,14,13,Overcast.,28,160,91,1015
173
+ 20250213,00:00,06:00,14,14,Light rain. Fog.,28,160,92,1016
174
+ 20250213,06:00,12:00,15,13,Light rain. Fog.,26,160,96,1018
175
+ 20250213,12:00,18:00,16,14,Cloudy.,27,160,95,1017
176
+ 20250213,18:00,00:00,15,14,Light rain. Fog.,34,190,94,1017
177
+ 20250214,00:00,06:00,16,13,Passing clouds.,9,240,87,1019
178
+ 20250214,06:00,12:00,16,13,Broken clouds.,10,270,96,1021
179
+ 20250214,12:00,18:00,16,14,Scattered clouds.,19,300,81,1020
180
+ 20250214,18:00,00:00,13,11,Passing clouds.,14,290,86,1022
181
+ 20250215,00:00,06:00,10,9,Passing clouds.,4,90,99,1022
182
+ 20250215,06:00,12:00,16,9,Partly sunny.,6,350,82,1024
183
+ 20250215,12:00,18:00,17,14,Scattered clouds.,25,320,70,1021
184
+ 20250215,18:00,00:00,14,11,Passing clouds.,5,340,93,1022
185
+ 20250216,00:00,06:00,11,9,Clear.,2,310,100,1019
186
+ 20250216,06:00,12:00,20,9,Partly sunny.,5,330,69,1019
187
+ 20250216,12:00,18:00,18,16,Partly sunny.,15,310,54,1015
188
+ 20250216,18:00,00:00,14,12,Passing clouds.,4,310,89,1015
189
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
190
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
191
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
192
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
193
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
194
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
195
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
196
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
197
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
198
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
199
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
200
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
201
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
202
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
203
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
204
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
205
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
206
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
207
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
208
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
209
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
210
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
211
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
212
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
213
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
214
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
215
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
216
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
217
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
218
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
219
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
220
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
221
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
222
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
223
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
224
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
225
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
226
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
227
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
228
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
229
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
230
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
231
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
232
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
233
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
234
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
235
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
236
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
237
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
238
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
239
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
240
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
241
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
242
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
243
+ 20250302,12:00,18:00,17,16,Broken clouds.,29,290,61,1020
244
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
245
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
246
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
247
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
248
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
249
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
250
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
251
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
252
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
253
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
254
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
255
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
256
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
257
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
258
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
259
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
260
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
261
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
262
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
263
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
264
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
265
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
266
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
267
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
268
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
269
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
270
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
271
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
272
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
273
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
274
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
275
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
276
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
277
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
278
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
279
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
280
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
281
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
282
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
283
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
284
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
285
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
286
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
287
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
288
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
289
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
290
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
291
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
292
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
293
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
294
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
295
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
296
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
297
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
298
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
299
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
300
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
301
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
302
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
303
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
304
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
305
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
306
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
307
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
308
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
309
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
310
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
311
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
312
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
313
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
314
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
315
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
316
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
317
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
318
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
319
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
320
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
321
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
322
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
323
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
324
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
325
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
326
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
327
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
328
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
329
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
330
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
331
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
332
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
333
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
334
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
335
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
336
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
337
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
338
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
339
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
340
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
341
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
342
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
343
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
344
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
345
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
346
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
347
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
348
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
349
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
350
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
351
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
352
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
353
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
354
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
355
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
356
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
357
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
358
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
359
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
360
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
361
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
362
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
363
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
364
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
365
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
366
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
367
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
368
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
369
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
370
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
371
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
372
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
373
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
374
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
375
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
376
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
377
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
378
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
379
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
380
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
381
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
382
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
383
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
384
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
385
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
386
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
387
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
388
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
389
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
390
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
391
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
392
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
393
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
394
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
395
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
396
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
397
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
398
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
399
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
400
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
401
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
402
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
403
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
404
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
405
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
406
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
407
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
408
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
409
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
410
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
411
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
412
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
413
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
414
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
415
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
416
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
417
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
418
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
419
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
420
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
421
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
422
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
423
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
424
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
425
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
426
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
427
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
428
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
429
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
430
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
431
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
432
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
433
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
434
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
435
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
436
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
437
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
438
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
439
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
440
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
441
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
442
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
443
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
444
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
445
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
446
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
447
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
448
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
449
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
450
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
451
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
452
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
453
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
454
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
455
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
456
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
457
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
458
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
459
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
460
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
461
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
462
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
463
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
464
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
465
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
466
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
467
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
468
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
469
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
470
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
471
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
472
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
473
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
474
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
475
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
476
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
477
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
478
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
479
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
480
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
481
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
482
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
483
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
484
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
485
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
486
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
487
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
488
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
489
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
490
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
491
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
492
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
493
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
494
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
495
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
496
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
497
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
498
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
499
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
500
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
501
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
502
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
503
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
504
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
505
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
506
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
507
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
508
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
509
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
510
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
511
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
512
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
513
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
514
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
515
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
516
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
517
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
518
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
519
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
520
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
521
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
522
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
523
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
524
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
525
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
526
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
527
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
528
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
529
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
530
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
531
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
532
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
533
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
534
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
535
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
536
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
537
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
538
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
539
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
540
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
541
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
542
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
543
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
544
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
545
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
546
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
547
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
548
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
549
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
550
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
551
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
552
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
553
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
554
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
555
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
556
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
557
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
558
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
559
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
560
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
561
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
562
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
563
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
564
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
565
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
566
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
567
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
568
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
569
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
570
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
571
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
572
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
573
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
574
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
575
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
576
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
577
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
578
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
579
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
580
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
581
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
582
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
583
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
584
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
585
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
586
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
587
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
588
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
589
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
590
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
591
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
592
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
593
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
594
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
595
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
596
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
597
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
598
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
599
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
600
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
601
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
602
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
603
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
604
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
605
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
606
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
607
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
608
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
609
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
610
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
611
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
612
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
613
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
614
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
615
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
616
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
617
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
618
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
619
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
620
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
621
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
622
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
623
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
624
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
625
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
626
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
627
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
628
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
629
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
630
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
631
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
632
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
633
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
634
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
635
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
636
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
637
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
638
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
639
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
640
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
641
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
642
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
643
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
644
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
645
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
646
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
647
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
648
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
649
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
650
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
651
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
652
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
653
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
654
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
655
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
656
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
657
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
658
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
659
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
660
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
661
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
662
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
663
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
664
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
665
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
666
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
667
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
668
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
669
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
670
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
671
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
672
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
673
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
674
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
675
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
676
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
677
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
678
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
679
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
680
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
681
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
682
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
683
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
684
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
685
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
686
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
687
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
688
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
689
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
690
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
691
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
692
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
693
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
694
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
695
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
696
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
697
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
698
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
699
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
700
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
701
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
702
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
703
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
704
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
705
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
706
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
707
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
708
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
709
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
710
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
711
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
712
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
713
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
714
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
715
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
716
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
717
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
718
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
719
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
720
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
721
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
722
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
723
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
724
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
725
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
726
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
727
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
728
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
729
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
730
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
731
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
732
+ 20250216,18:00,00:00,13,12,Clear.,4,220,89,1015
733
+ 20250217,00:00,06:00,12,11,Fog.,3,200,78,1015
734
+ 20250217,06:00,12:00,15,11,Fog.,5,200,85,1016
735
+ 20250217,12:00,18:00,16,13,Sunny.,15,270,84,1014
736
+ 20250217,18:00,00:00,14,13,Overcast.,12,160,90,1016
737
+ 20250218,00:00,06:00,14,14,Passing clouds.,19,130,74,1016
738
+ 20250218,06:00,12:00,15,13,Broken clouds.,13,130,74,1017
739
+ 20250218,12:00,18:00,16,14,Partly sunny.,11,210,71,1016
740
+ 20250218,18:00,00:00,14,13,Passing clouds.,6,340,83,1018
741
+ 20250219,00:00,06:00,15,11,Passing clouds.,0,0,83,1018
742
+ 20250219,06:00,12:00,17,13,Passing clouds.,3,350,72,1019
743
+ 20250219,12:00,18:00,18,16,Passing clouds.,15,310,76,1017
744
+ 20250219,18:00,00:00,15,13,Passing clouds.,3,340,90,1017
745
+ 20250220,00:00,06:00,13,11,Fog.,2,340,93,1015
746
+ 20250220,06:00,12:00,20,13,Fog.,7,150,83,1016
747
+ 20250220,12:00,18:00,20,14,Scattered clouds.,11,260,81,1014
748
+ 20250220,18:00,00:00,14,12,Passing clouds.,10,180,91,1016
749
+ 20250221,00:00,06:00,14,13,Passing clouds.,2,180,85,1016
750
+ 20250221,06:00,12:00,16,12,Fog.,7,320,91,1018
751
+ 20250221,12:00,18:00,17,14,Partly sunny.,11,270,87,1018
752
+ 20250221,18:00,00:00,13,12,Clear.,3,330,99,1020
753
+ 20250222,00:00,06:00,12,11,Fog.,6,340,60,1021
754
+ 20250222,06:00,12:00,23,11,Passing clouds.,2,60,61,1023
755
+ 20250222,12:00,18:00,18,16,Scattered clouds.,18,320,69,1021
756
+ 20250222,18:00,00:00,15,11,Clear.,3,10,92,1023
757
+ 20250223,00:00,06:00,12,11,Clear.,6,350,96,1023
758
+ 20250223,06:00,12:00,23,10,Sunny.,8,350,43,1023
759
+ 20250223,12:00,18:00,21,17,Sunny.,12,290,48,1021
760
+ 20250223,18:00,00:00,16,13,Clear.,5,350,80,1021
761
+ 20250224,00:00,06:00,13,11,Passing clouds.,4,0,84,1020
762
+ 20250224,06:00,12:00,19,11,Passing clouds.,7,310,58,1020
763
+ 20250224,12:00,18:00,19,14,Passing clouds.,20,320,77,1017
764
+ 20250224,18:00,00:00,17,13,Clear.,5,330,88,1017
765
+ 20250225,00:00,06:00,13,12,Fog.,7,20,98,1016
766
+ 20250225,06:00,12:00,19,12,Fog.,8,350,84,1016
767
+ 20250225,12:00,18:00,18,15,Passing clouds.,12,310,77,1013
768
+ 20250225,18:00,00:00,15,12,Fog.,6,350,95,1013
769
+ 20250226,00:00,06:00,11,11,Fog.,3,350,100,1013
770
+ 20250226,06:00,12:00,15,11,Fog.,8,170,95,1015
771
+ 20250226,12:00,18:00,17,15,Passing clouds.,11,330,77,1013
772
+ 20250226,18:00,00:00,15,12,Passing clouds.,9,340,94,1015
773
+ 20250227,00:00,06:00,12,11,Fog.,6,120,100,1017
774
+ 20250227,06:00,12:00,27,11,Fog.,6,330,76,1018
775
+ 20250227,12:00,18:00,28,19,Partly sunny.,17,340,42,1014
776
+ 20250227,18:00,00:00,19,15,Passing clouds.,3,250,56,1014
777
+ 20250228,00:00,06:00,16,14,Passing clouds.,15,190,92,1014
778
+ 20250228,06:00,12:00,17,14,Partly sunny.,13,140,92,1015
779
+ 20250228,12:00,18:00,18,14,Broken clouds.,14,260,79,1014
780
+ 20250228,18:00,00:00,14,13,Passing clouds.,6,270,91,1014
781
+ 20250301,00:00,06:00,14,13,Overcast.,7,240,86,1014
782
+ 20250301,06:00,12:00,16,13,Broken clouds.,12,260,78,1015
783
+ 20250301,12:00,18:00,16,14,Partly sunny.,12,170,72,1016
784
+ 20250301,18:00,00:00,14,14,Passing clouds.,11,190,87,1018
785
+ 20250302,00:00,06:00,14,13,Overcast.,12,190,86,1019
786
+ 20250302,06:00,12:00,16,13,Partly sunny.,12,230,69,1021
787
+ 20250302,12:00,18:00,17,14,Broken clouds.,28,290,61,1020
788
+ 20250302,18:00,00:00,13,12,Passing clouds.,25,280,78,1019
789
+ 20250303,00:00,06:00,12,12,Overcast.,38,280,72,1018
790
+ 20250303,06:00,12:00,14,12,Broken clouds.,33,280,67,1019
791
+ 20250303,12:00,18:00,15,13,Scattered clouds.,16,300,62,1019
792
+ 20250303,18:00,00:00,13,11,Passing clouds.,1,230,78,1020
weather/san-diego/raw_data/daily_weather_raw_2018.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2019.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2020.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2021.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2022.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2023.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2024.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/daily_weather_raw_2025.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/hourly_weather_raw_2018.csv ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/hourly_weather_raw_2019.csv ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/hourly_weather_raw_2020.csv ADDED
The diff for this file is too large to render. See raw diff
 
weather/san-diego/raw_data/hourly_weather_raw_2021.csv ADDED
The diff for this file is too large to render. See raw diff