Created
July 4, 2016 11:29
-
-
Save Gcav66/5d9424d81a727747f0b0f739984ad3e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def create_batch_big(myfile, start_year, end_year): | |
myData = {} | |
with open(myfile) as f: | |
latlong = csv.DictReader(f) | |
myId = [] | |
for row in latlong: | |
myName = "id_" + row['anonymous_id'] + "_weather_data" | |
#myId = [] | |
for z in range(start_year, end_year): | |
for i in range(1, 13): | |
myCall = {} | |
day = monthrange(z, i)[1] | |
if len(str(i)) < 2: | |
startdate = str(z) + '-0' + str(i) + '-01' | |
enddate = str(z) + '-0' + str(i) + '-' + str(day) | |
else: | |
startdate = str(z) + '-' + str(i) + '-01' | |
enddate = str(z) + '-' + str(i) + '-' + str(day) | |
myCall["title"] = myName + "_" + str(z) + "_" + str(i) | |
myCall["api"] = "GET /v2/weather/locations/" + row['latnum']+ "," + row['longnum'] + \ | |
"/observations/" + startdate + "," + enddate + "/?blockSize=1" | |
myId.append(myCall) | |
#myData[row['anonymous_id']] = myId | |
myData['huge_input'] = myId | |
def make_call_big(myData): | |
mypayload = { | |
"title":"Sofia Nigeria 2013", | |
"type":"batch", | |
"requests": myData | |
} | |
client = fetch_token(key, secret) | |
stuff = client.post(r'https://api.awhere.com/v2/jobs',json=mypayload) | |
return stuff.json() | |
def chunks(l, n): | |
"""Yield successive n-sized chunks from l.""" | |
for i in xrange(0, len(l), n): | |
yield l[i:i+n] | |
myBatch = create_batch_big("C:\\Users\\gus\\workspace\\awhere\\Sofia_Data\\NG_2013_anonymized.csv", 2003, 2005) | |
myBatch_split = list(chunks(myBatch['huge_input'], 360)) | |
print "make call" | |
results = [] | |
for request in myBatch_split: | |
print "making call" | |
response = make_call_big(request) | |
print response | |
results.append(response) |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
anonymous_id dhsyear latnum longnum alt_gps alt_dem | |
1 2013 5.185091972 7.715280056 9999 97 | |
2 2013 8.348506927 8.833737373 9999 180 | |
3 2013 9.181493759 6.376670837 9999 127 | |
4 2013 7.685192108 5.988824844 9999 370 | |
5 2013 12.14755154 6.713367939 9999 478 | |
6 2013 8.315398216 9.686684608 9999 147 | |
7 2013 9.116501808 4.814712048 9999 97 | |
8 2013 9.313765526 7.745061874 9999 454 | |
9 2013 6.37945509 5.628859043 9999 102 | |
10 2013 7.766513824 5.739295959 9999 551 | |
11 2013 12.45174313 9.410819054 9999 372 | |
12 2013 12.0340786 8.490412712 9999 491 | |
13 2013 0 0 9999 9999 | |
14 2013 4.482021809 7.128664017 9999 4 | |
15 2013 7.178322792 7.813354015 9999 173 | |
16 2013 12.94222927 6.82805109 9999 450 | |
17 2013 8.546014786 8.451321602 9999 131 | |
18 2013 5.168307781 6.514565945 9999 14 | |
19 2013 4.889927864 6.664562225 9999 7 | |
20 2013 8.137685776 4.262464046 9999 312 | |
21 2013 9.130043983 9.840171814 9999 267 | |
22 2013 13.76767826 5.598807812 9999 335 | |
23 2013 11.78578091 7.589403152 9999 616 | |
24 2013 6.735454082 8.448335648 9999 109 | |
25 2013 6.113871098 8.219959259 9999 45 | |
26 2013 7.400485992 4.004473209 9999 185 | |
27 2013 4.806624889 7.004797935 9999 22 | |
28 2013 6.396613121 7.917805195 9999 117 | |
29 2013 12.67301655 5.001640797 9999 270 | |
30 2013 7.272634029 5.266348839 9999 328 | |
31 2013 8.750150681 8.090164185 9999 336 | |
32 2013 11.96945858 4.158634186 9999 187 | |
33 2013 10.9854126 10.86431026 9999 370 | |
34 2013 7.568768978 6.173435211 9999 413 | |
35 2013 6.387544155 8.386034012 9999 57 | |
36 2013 11.45276928 4.436203003 9999 219 | |
37 2013 11.99616623 9.606444359 9999 377 | |
38 2013 6.38484621 7.474165916 9999 212 | |
39 2013 12.32484818 6.821461201 9999 436 | |
40 2013 7.268223763 5.203633785 9999 352 | |
41 2013 8.765458107 3.603125095 9999 444 | |
42 2013 7.523577213 4.54863596 9999 263 | |
43 2013 11.07060242 13.70263672 9999 426 | |
44 2013 6.52958107 3.377935886 9999 16 | |
45 2013 8.60753727 7.178458214 9999 244 | |
46 2013 9.767329216 3.37847209 9999 419 | |
47 2013 10.50355625 8.499361038 9999 798 | |
48 2013 5.569454193 7.3020401 9999 164 | |
49 2013 11.80479431 8.626042366 9999 444 | |
50 2013 8.500911713 4.602337837 9999 314 | |
51 2013 7.638459206 5.408666134 9999 394 | |
52 2013 10.10831928 13.30737114 9999 1014 | |
53 2013 13.0170002 7.62386179 9999 500 | |
54 2013 7.213366032 7.624369144 9999 385 | |
55 2013 5.039227962 7.743902206 9999 69 | |
56 2013 6.955776215 8.307408333 9999 116 | |
57 2013 11.67834282 10.70397663 9999 395 | |
58 2013 4.290337086 6.094225883 9999 0 | |
59 2013 6.266207218 6.187648773 9999 168 | |
60 2013 7.846395016 5.991781235 9999 476 | |
61 2013 4.398367882 7.160630226 9999 7 | |
62 2013 6.512886047 3.204782009 9999 5 | |
63 2013 6.797826767 6.254014969 9999 353 | |
64 2013 4.703455925 8.010665894 9999 31 | |
65 2013 6.442687035 3.336106062 9999 4 | |
66 2013 6.499321938 3.366342068 9999 12 | |
67 2013 9.342510223 9.205836296 9999 1279 | |
68 2013 7.911438942 6.753847122 9999 51 | |
69 2013 6.536667824 3.335089922 9999 23 | |
70 2013 6.50534296 3.382469893 9999 9 | |
71 2013 6.790872097 5.27493 9999 74 | |
72 2013 7.909534931 7.070504189 9999 56 | |
73 2013 6.601336956 7.333683014 9999 352 | |
74 2013 9.283892632 12.81203747 9999 184 | |
75 2013 5.347704887 5.866577148 9999 9 | |
76 2013 8.771730423 5.797715187 9999 63 | |
77 2013 11.25347328 12.00085068 9999 452 | |
78 2013 12.30515862 11.02757931 9999 357 | |
79 2013 10.22221375 9.404447556 9999 726 | |
80 2013 6.464136124 7.190254211 9999 82 | |
81 2013 7.379535198 3.902972937 9999 191 | |
82 2013 7.456657887 2.851144075 9999 203 | |
83 2013 11.12543678 7.725948811 9999 628 | |
84 2013 9.098192215 7.527573109 9999 535 | |
85 2013 5.085017204 7.370816231 9999 61 | |
86 2013 6.616168976 3.331314087 9999 35 | |
87 2013 10.30947876 9.841553688 9999 618 | |
88 2013 7.444894791 4.012999058 9999 185 | |
89 2013 9.644287109 8.603730202 9999 944 | |
90 2013 4.790890217 7.12138319 9999 18 | |
91 2013 9.14131546 11.62034988 9999 345 | |
92 2013 7.797304153 5.691788197 9999 549 | |
93 2013 12.48587227 6.58379221 9999 437 | |
94 2013 6.401896954 7.934858799 9999 131 | |
95 2013 8.843252182 10.80591679 9999 150 | |
96 2013 5.161450863 8.310816765 9999 40 | |
97 2013 11.73254204 4.095201969 9999 170 | |
98 2013 6.222609043 7.426634789 9999 231 | |
99 2013 5.029460907 7.889520168 9999 68 | |
100 2013 13.29999161 8.018676758 9999 436 | |
101 2013 6.753528118 7.769925117 9999 151 | |
102 2013 11.90620804 8.774534225 9999 435 | |
103 2013 6.338482857 7.479266167 9999 204 | |
104 2013 5.9238801 7.726976871 9999 49 | |
105 2013 5.213439941 6.528436184 9999 10 | |
106 2013 8.964446068 8.472935677 9999 437 | |
107 2013 6.442368031 7.789120197 9999 84 | |
108 2013 12.882061 10.45016384 9999 348 | |
109 2013 7.737596035 4.438466072 9999 287 | |
110 2013 6.627755165 7.831058025 9999 86 | |
111 2013 11.2816391 12.00128937 9999 449 | |
112 2013 10.43269444 8.235795975 9999 697 | |
113 2013 9.710025787 12.27205563 9999 249 | |
114 2013 7.157333851 3.339715004 9999 66 | |
115 2013 6.591289997 3.392553091 9999 3 | |
116 2013 7.630005836 4.187176228 9999 246 | |
117 2013 11.88214874 7.591344833 9999 585 | |
118 2013 12.32810307 5.131472111 9999 255 | |
119 2013 11.75156212 10.80491066 9999 396 | |
120 2013 11.54835796 10.41648102 9999 430 | |
121 2013 6.588963985 4.742865086 9999 40 | |
122 2013 4.859032154 7.997766972 9999 51 | |
123 2013 7.148612022 9.16421032 9999 141 | |
124 2013 5.413403988 7.423152924 9999 133 | |
125 2013 7.354670048 3.898075104 9999 174 | |
126 2013 4.652708054 7.964212894 9999 27 | |
127 2013 6.152351856 7.368509769 9999 322 | |
128 2013 6.113286018 6.785988808 9999 36 | |
129 2013 8.482543945 6.94651413 9999 147 | |
130 2013 6.472924232 3.163219929 9999 6 | |
131 2013 9.558509827 11.10389805 9999 457 | |
132 2013 7.191263199 8.146331787 9999 182 | |
133 2013 6.530498981 3.389972925 9999 11 | |
134 2013 9.143529892 9.802323341 9999 335 | |
135 2013 13.73873901 5.28966713 9999 266 | |
136 2013 4.687263012 6.318595886 9999 4 | |
137 2013 6.098491192 6.173060894 9999 143 | |
138 2013 11.98354053 10.407938 9999 369 | |
139 2013 11.29680157 12.08525276 9999 432 | |
140 2013 11.58473492 8.805891991 9999 485 | |
141 2013 13.22733498 6.516129017 9999 339 | |
142 2013 7.487043858 3.921864986 9999 244 | |
143 2013 12.36170292 8.526973724 9999 460 | |
144 2013 7.757197857 4.895895958 9999 404 | |
145 2013 12.07247257 4.073512077 9999 190 | |
146 2013 5.812997818 6.951023102 9999 164 | |
147 2013 4.329421043 6.035830975 9999 7 | |
148 2013 6.700078964 3.497507095 9999 46 | |
149 2013 6.537999153 3.289380074 9999 30 | |
150 2013 11.84485626 8.810067177 9999 418 | |
151 2013 6.810320854 8.808428764 9999 88 | |
152 2013 5.528416157 7.374866009 9999 112 | |
153 2013 7.697897911 3.184576988 9999 174 | |
154 2013 0 0 9999 9999 | |
155 2013 5.717542171 7.471874237 9999 188 | |
156 2013 6.22332716 8.173344612 9999 46 | |
157 2013 4.711194992 6.039982796 9999 5 | |
158 2013 7.378864765 3.823142052 9999 183 | |
159 2013 7.656989098 5.117313862 9999 572 | |
160 2013 4.537970066 7.260128975 9999 5 | |
161 2013 11.22924232 10.01055622 9999 465 | |
162 2013 5.16783905 7.252561092 9999 68 | |
163 2013 8.39824295 4.623362064 9999 375 | |
164 2013 7.445234776 9.004712105 9999 173 | |
165 2013 11.81473637 13.08870411 9999 335 | |
166 2013 9.061270714 7.443314075 9999 462 | |
167 2013 8.804697037 8.752104759 9999 238 | |
168 2013 5.936638832 5.651535034 9999 10 | |
169 2013 12.27655506 7.974254131 9999 583 | |
170 2013 9.636519432 9.087538719 9999 1078 | |
171 2013 6.565795898 3.375848055 9999 17 | |
172 2013 7.601959229 5.417432785 9999 369 | |
173 2013 13.06809616 5.254032135 9999 299 | |
174 2013 6.327319145 5.662665844 9999 87 | |
175 2013 8.474935532 4.56117487 9999 299 | |
176 2013 12.3674593 7.289390087 9999 459 | |
177 2013 12.39803314 10.6047554 9999 355 | |
178 2013 12.65052223 9.67316246 9999 364 | |
179 2013 6.461547852 3.390604019 9999 1 | |
180 2013 8.765317917 12.08246422 9999 397 | |
181 2013 6.629644871 8.010708809 9999 121 | |
182 2013 6.899356842 4.877271175 9999 205 | |
183 2013 7.727149963 8.552559853 9999 81 | |
184 2013 9.060276985 7.399261951 9999 456 | |
185 2013 12.31974792 7.554294109 9999 503 | |
186 2013 12.40764999 10.02238178 9999 363 | |
187 2013 6.714297771 9.075204849 9999 170 | |
188 2013 5.522333145 5.764907837 9999 6 | |
189 2013 12.01898193 8.478021622 9999 490 | |
190 2013 10.29010201 10.1828413 9999 495 | |
191 2013 6.931538105 9.834429741 9999 217 | |
192 2013 4.665987968 7.915869236 9999 15 | |
193 2013 4.758094788 5.977875233 9999 15 | |
194 2013 12.04371452 8.45899868 9999 491 | |
195 2013 7.761046886 9.989088058 9999 159 | |
196 2013 8.154344559 4.719408989 9999 426 | |
197 2013 10.55603027 5.596879959 9999 369 | |
198 2013 12.70410633 6.838977814 9999 410 | |
199 2013 6.577926159 2.924614906 9999 20 | |
200 2013 12.86594391 10.4403286 9999 349 | |
201 2013 8.531827927 12.37496567 9999 470 | |
202 2013 10.26909924 11.20515919 9999 404 | |
203 2013 6.68156004 4.203927994 9999 52 | |
204 2013 7.491930008 5.243403912 9999 371 | |
205 2013 12.57679653 10.73617744 9999 347 | |
206 2013 8.713816643 11.62837791 9999 501 | |
207 2013 8.651693344 9.768994331 9999 162 | |
208 2013 5.201541901 7.598516941 9999 93 | |
209 2013 10.96806431 9.63647747 9999 480 | |
210 2013 9.197908401 12.4887867 9999 190 | |
211 2013 5.441854 7.257946014 9999 115 | |
212 2013 7.565668106 7.621759892 9999 387 | |
213 2013 9.245381355 11.8634758 9999 277 | |
214 2013 10.09270382 6.554115772 9999 305 | |
215 2013 0 0 9999 9999 | |
216 2013 9.981601715 11.48633003 9999 329 | |
217 2013 9.7942276 8.377101898 9999 844 | |
218 2013 6.386050224 5.615040779 9999 110 | |
219 2013 6.628065109 9.242049217 9999 259 | |
220 2013 6.170569897 4.787600994 9999 5 | |
221 2013 12.76327419 4.549636841 9999 241 | |
222 2013 11.66750431 4.044361115 9999 190 | |
223 2013 6.617081165 3.295841932 9999 32 | |
224 2013 7.753973007 5.391413212 9999 540 | |
225 2013 7.10258007 8.099183083 9999 116 | |
226 2013 7.817645073 4.589839935 9999 366 | |
227 2013 9.215800285 12.49829388 9999 172 | |
228 2013 9.935529709 8.914128304 9999 1207 | |
229 2013 6.821737766 3.899621964 9999 74 | |
230 2013 9.024736404 7.422396183 9999 445 | |
231 2013 5.011624813 5.818759918 9999 7 | |
232 2013 6.548487186 3.215624094 9999 26 | |
233 2013 7.223512173 5.186448097 9999 416 | |
234 2013 6.899918079 3.10789609 9999 127 | |
235 2013 10.06032276 12.77326107 9999 539 | |
236 2013 6.809700966 6.682640076 9999 30 | |
237 2013 5.502464771 7.890522003 9999 187 | |
238 2013 10.6340704 11.52378941 9999 271 | |
239 2013 4.784002781 7.156230927 9999 21 | |
240 2013 6.31111002 6.483406067 9999 261 | |
241 2013 8.505205154 4.544726849 9999 310 | |
242 2013 11.09393883 11.34800434 9999 273 | |
243 2013 7.119257927 7.626355171 9999 412 | |
244 2013 12.13243675 9.510924339 9999 380 | |
245 2013 10.98338509 8.059851646 9999 685 | |
246 2013 6.705212116 4.270120144 9999 54 | |
247 2013 12.75320816 7.243291855 9999 472 | |
248 2013 6.706788063 7.391684055 9999 439 | |
249 2013 12.37225819 11.04129219 9999 349 | |
250 2013 6.728114128 3.369570017 9999 54 | |
251 2013 11.51729393 7.313148975 9999 704 | |
252 2013 7.481109142 7.987040043 9999 161 | |
253 2013 5.81781292 7.16834116 9999 155 | |
254 2013 8.946827888 8.710266113 9999 430 | |
255 2013 9.389979362 9.200819016 9999 1142 | |
256 2013 13.24171162 5.415383816 9999 325 | |
257 2013 8.908278465 8.378300667 9999 474 | |
258 2013 6.894239902 7.44494915 9999 407 | |
259 2013 7.844756126 4.322825909 9999 369 | |
260 2013 6.519155025 6.321775913 9999 254 | |
261 2013 12.95334625 5.423015118 9999 298 | |
262 2013 11.9910078 8.517212868 9999 487 | |
263 2013 7.112295151 6.648608208 9999 46 | |
264 2013 12.85253334 10.2992897 9999 350 | |
265 2013 12.17751503 7.819180965 9999 552 | |
266 2013 7.636651993 5.229608059 9999 424 | |
267 2013 7.302464962 5.844572067 9999 333 | |
268 2013 9.044939041 7.494066238 9999 489 | |
269 2013 7.479214191 7.602560997 9999 436 | |
270 2013 12.43594265 9.691287041 9999 368 | |
271 2013 8.103565216 7.670107841 9999 91 | |
272 2013 10.31944847 11.17882633 9999 453 | |
273 2013 9.902968407 11.94760609 9999 217 | |
274 2013 12.1485548 8.366464615 9999 502 | |
275 2013 12.56968498 7.523131847 9999 545 | |
276 2013 9.09707737 6.022803783 9999 125 | |
277 2013 5.168889046 5.931465149 9999 10 | |
278 2013 4.726749897 6.869859219 9999 7 | |
279 2013 12.02054882 13.92266464 9999 296 | |
280 2013 11.77526855 8.291300774 9999 491 | |
281 2013 12.14281845 5.736968994 9999 301 | |
282 2013 5.358942986 5.704635143 9999 3 | |
283 2013 9.983328819 10.93246078 9999 477 | |
284 2013 11.66727924 8.547019958 9999 486 | |
285 2013 8.570109367 3.547449112 9999 388 | |
286 2013 7.813341141 6.98252821 9999 82 | |
287 2013 8.596510887 8.925095558 9999 136 | |
288 2013 4.731881142 6.772870064 9999 5 | |
289 2013 10.41875458 7.41945219 9999 604 | |
290 2013 7.731732845 5.735601902 9999 550 | |
291 2013 11.18840408 9.910355568 9999 456 | |
292 2013 7.245966911 8.672721863 9999 117 | |
293 2013 5.922989845 7.880380154 9999 48 | |
294 2013 7.986487865 10.99395466 9999 218 | |
295 2013 8.479996681 8.620824814 9999 240 | |
296 2013 13.28920174 5.344613075 9999 281 | |
297 2013 7.731044769 9.621146202 9999 168 | |
298 2013 8.699826241 5.895577908 9999 89 | |
299 2013 6.736863136 3.58514595 9999 83 | |
300 2013 5.001820087 6.362630844 9999 8 | |
301 2013 11.10173512 7.740862846 9999 629 | |
302 2013 5.634796143 7.553911209 9999 125 | |
303 2013 4.782493114 8.179390907 9999 21 | |
304 2013 6.660881996 11.28604031 9999 1321 | |
305 2013 6.463712215 8.951239586 9999 133 | |
306 2013 6.224367142 7.740756989 9999 74 | |
307 2013 7.226806164 4.6322999 9999 201 | |
308 2013 12.55601978 4.899130821 9999 287 | |
309 2013 12.01362514 12.52110863 9999 352 | |
310 2013 8.090308189 3.340538979 9999 277 | |
311 2013 6.30062294 6.00442791 9999 55 | |
312 2013 6.813018799 5.562839985 9999 72 | |
313 2013 12.36209011 4.818673134 9999 297 | |
314 2013 11.50853825 6.535689831 9999 555 | |
315 2013 12.43454266 7.447972775 9999 505 | |
316 2013 9.345817566 11.00424576 9999 238 | |
317 2013 7.936111927 4.842133999 9999 489 | |
318 2013 5.770022869 6.959956169 9999 160 | |
319 2013 13.05810833 6.404704094 9999 335 | |
320 2013 6.480618 3.337884903 9999 9 | |
321 2013 5.888529778 7.080110073 9999 238 | |
322 2013 11.61848545 11.7182703 9999 401 | |
323 2013 10.16228771 12.74219608 9999 592 | |
324 2013 9.096179008 7.414277077 9999 469 | |
325 2013 5.447628975 7.14652586 9999 96 | |
326 2013 10.73459911 7.944544792 9999 678 | |
327 2013 6.781006813 7.426636219 9999 505 | |
328 2013 5.318051815 8.587126732 9999 122 | |
329 2013 9.356378555 8.01438427 9999 586 | |
330 2013 9.578401566 6.569627762 9999 243 | |
331 2013 11.69563866 8.744655609 9999 448 | |
332 2013 6.459342003 3.348361015 9999 8 | |
333 2013 7.500423908 5.080701828 9999 359 | |
334 2013 10.03215504 9.112012863 9999 931 | |
335 2013 7.814660072 5.364321232 9999 631 | |
336 2013 5.796733856 6.868079185 9999 71 | |
337 2013 11.24113464 9.656045914 9999 444 | |
338 2013 5.167982101 8.154067039 9999 90 | |
339 2013 6.635127068 3.389213085 9999 28 | |
340 2013 7.598018169 4.754376888 9999 400 | |
341 2013 10.36612225 8.995874405 9999 968 | |
342 2013 4.48867178 7.1639781 9999 7 | |
343 2013 9.06754303 7.154070854 9999 250 | |
344 2013 12.02037811 8.343880653 9999 486 | |
345 2013 7.176901817 9.197080612 9999 141 | |
346 2013 4.892006874 7.356865883 9999 19 | |
347 2013 6.676534176 3.240034103 9999 68 | |
348 2013 5.881247044 7.926277161 9999 67 | |
349 2013 9.389274597 12.83231258 9999 173 | |
350 2013 6.445025921 3.881530046 9999 5 | |
351 2013 11.73975658 13.9324522 9999 305 | |
352 2013 6.470467091 3.34374404 9999 10 | |
353 2013 12.77572727 6.525276184 9999 371 | |
354 2013 6.89637804 3.741044044 9999 95 | |
355 2013 6.477778912 7.509965897 9999 166 | |
356 2013 4.882176876 8.425214767 9999 58 | |
357 2013 6.447587967 3.251605988 9999 4 | |
358 2013 9.074850082 7.394607067 9999 445 | |
359 2013 6.533926964 3.344542027 9999 12 | |
360 2013 12.21433735 5.6738801 9999 338 | |
361 2013 5.272074223 7.302021027 9999 85 | |
362 2013 8.155260086 3.401222944 9999 310 | |
363 2013 8.434088707 11.03312016 9999 264 | |
364 2013 6.861600876 11.53845596 9999 1532 | |
365 2013 12.3085041 4.336993217 9999 221 | |
366 2013 5.253493786 6.520342827 9999 25 | |
367 2013 5.378015041 6.793276787 9999 50 | |
368 2013 9.78978157 9.88201046 9999 555 | |
369 2013 7.312326908 4.950901031 9999 291 | |
370 2013 11.83236217 9.915769577 9999 387 | |
371 2013 7.023375034 7.448162079 9999 319 | |
372 2013 11.82186413 8.842139244 9999 421 | |
373 2013 11.91132545 8.656567574 9999 484 | |
374 2013 11.82189083 9.194911957 9999 431 | |
375 2013 5.271364212 7.950719833 9999 17 | |
376 2013 6.664309025 3.319715977 9999 45 | |
377 2013 5.229959011 6.195732117 9999 11 | |
378 2013 9.186170578 9.704893112 9999 515 | |
379 2013 5.791067123 8.059671402 9999 102 | |
380 2013 11.51006222 8.551980972 9999 564 | |
381 2013 7.945567131 10.65774059 9999 199 | |
382 2013 8.828906059 4.993175983 9999 288 | |
383 2013 11.1233902 6.135202885 9999 473 | |
384 2013 6.329108238 5.578548908 9999 62 | |
385 2013 12.89354515 13.54444408 9999 290 | |
386 2013 12.15437222 9.537790298 9999 378 | |
387 2013 6.741496086 6.325081825 9999 390 | |
388 2013 5.750030041 6.921898842 9999 128 | |
389 2013 6.128389835 6.746714115 9999 23 | |
390 2013 13.05799007 4.835018158 9999 237 | |
391 2013 5.609557152 6.77493906 9999 24 | |
392 2013 9.069555283 4.950152874 9999 100 | |
393 2013 6.075452805 7.835072041 9999 87 | |
394 2013 8.086074829 4.705347061 9999 395 | |
395 2013 6.119627953 6.922108173 9999 161 | |
396 2013 8.988762856 9.861914635 9999 236 | |
397 2013 11.00043964 11.3810606 9999 309 | |
398 2013 11.41911125 6.016152859 9999 475 | |
399 2013 8.525179863 4.546441078 9999 282 | |
400 2013 5.757781982 7.173964977 9999 183 | |
401 2013 6.964375973 3.382977009 9999 52 | |
402 2013 9.730781555 11.70465088 9999 453 | |
403 2013 5.737477779 7.76862812 9999 81 | |
404 2013 11.39325523 5.288657188 9999 345 | |
405 2013 5.468735218 6.07070303 9999 15 | |
406 2013 6.604132175 6.99703598 9999 39 | |
407 2013 6.456491947 7.539912224 9999 184 | |
408 2013 7.278213978 7.736046791 9999 225 | |
409 2013 12.64707279 7.986785889 9999 501 | |
410 2013 11.7998333 13.20110226 9999 326 | |
411 2013 8.3236866 5.242049217 9999 312 | |
412 2013 7.930775166 5.444364071 9999 492 | |
413 2013 5.587919235 5.977939129 9999 16 | |
414 2013 9.650119781 11.80599213 9999 207 | |
415 2013 7.518813133 5.748877048 9999 461 | |
416 2013 7.550172806 6.249529839 9999 353 | |
417 2013 11.46901131 8.175741196 9999 615 | |
418 2013 11.95586014 8.255284309 9999 511 | |
419 2013 12.56939411 6.066144943 9999 313 | |
420 2013 12.91583824 10.53397465 9999 351 | |
421 2013 9.711026192 8.844145775 9999 1318 | |
422 2013 8.494574547 4.521048069 9999 319 | |
423 2013 9.082032204 7.418711185 9999 465 | |
424 2013 5.525664806 7.618498802 9999 56 | |
425 2013 7.368559837 3.937503099 9999 223 | |
426 2013 11.00729465 8.349324226 9999 722 | |
427 2013 8.162420273 5.141449928 9999 539 | |
428 2013 10.27672672 11.33654404 9999 365 | |
429 2013 6.092781067 7.047625065 9999 265 | |
430 2013 7.353158951 3.929197073 9999 192 | |
431 2013 5.612769127 6.945487022 9999 128 | |
432 2013 12.36509991 6.527768135 9999 435 | |
433 2013 8.473993301 4.539439201 9999 294 | |
434 2013 7.779739857 4.363718987 9999 303 | |
435 2013 12.12978268 9.193144798 9999 397 | |
436 2013 12.27560234 9.563035965 9999 376 | |
437 2013 5.467569828 7.515656948 9999 151 | |
438 2013 11.27983284 5.450857162 9999 342 | |
439 2013 12.89369965 11.03799343 9999 340 | |
440 2013 4.826710224 8.226735115 9999 19 | |
441 2013 8.933238983 7.091917038 9999 194 | |
442 2013 6.027987003 6.944240093 9999 173 | |
443 2013 7.58110714 6.188577175 9999 435 | |
444 2013 5.162668228 7.393922806 9999 79 | |
445 2013 7.661943913 4.928211212 9999 577 | |
446 2013 8.770745277 8.625758171 9999 282 | |
447 2013 6.086284161 7.071176052 9999 139 | |
448 2013 12.16436005 8.347023964 9999 515 | |
449 2013 13.27187443 4.95430088 9999 275 | |
450 2013 10.88651371 11.51519489 9999 260 | |
451 2013 9.872850418 11.23035145 9999 489 | |
452 2013 9.378789902 6.995328903 9999 443 | |
453 2013 6.961829185 6.012319088 9999 131 | |
454 2013 4.666388988 8.113455772 9999 32 | |
455 2013 10.90694141 8.331786156 9999 688 | |
456 2013 5.385008812 7.32968998 9999 90 | |
457 2013 12.59498978 6.601912022 9999 384 | |
458 2013 6.183648109 7.056911945 9999 110 | |
459 2013 8.921687126 11.32906055 9999 187 | |
460 2013 11.86867619 13.12848091 9999 323 | |
461 2013 9.744343758 6.065760136 9999 113 | |
462 2013 4.763968945 7.033650875 9999 6 | |
463 2013 4.860163212 7.039834023 9999 13 | |
464 2013 5.986337185 8.736250877 9999 112 | |
465 2013 7.464923859 4.890660763 9999 408 | |
466 2013 13.06241322 5.264987946 9999 287 | |
467 2013 6.612559795 7.412998199 9999 441 | |
468 2013 5.451429844 7.492928028 9999 161 | |
469 2013 6.496144772 2.815680027 9999 19 | |
470 2013 5.624919891 7.590855122 9999 139 | |
471 2013 11.63597775 6.673795223 9999 610 | |
472 2013 9.421262741 9.804832458 9999 373 | |
473 2013 6.376400948 7.958685875 9999 114 | |
474 2013 6.75531292 6.083498955 9999 375 | |
475 2013 9.480115891 9.157585144 9999 1145 | |
476 2013 6.671802998 5.391137123 9999 50 | |
477 2013 9.923323631 8.847693443 9999 1188 | |
478 2013 11.25238514 11.25801277 9999 347 | |
479 2013 5.313625813 5.788036823 9999 7 | |
480 2013 9.142659187 5.889798164 9999 154 | |
481 2013 6.151127815 7.418385029 9999 310 | |
482 2013 12.56442356 4.297319889 9999 210 | |
483 2013 0 0 9999 9999 | |
484 2013 12.87522697 5.089259148 9999 299 | |
485 2013 10.99371243 13.36338997 9999 402 | |
486 2013 4.53451395 6.392615795 9999 2 | |
487 2013 6.638924122 3.252902031 9999 34 | |
488 2013 12.89671135 10.87849522 9999 340 | |
489 2013 7.352284908 4.796000957 9999 249 | |
490 2013 9.923980713 8.91784668 9999 1214 | |
491 2013 12.62188244 9.168566704 9999 378 | |
492 2013 11.24842358 4.630012035 9999 185 | |
493 2013 7.090223789 6.508909225 9999 226 | |
494 2013 5.836603165 7.561154842 9999 74 | |
495 2013 9.658314705 11.01242638 9999 296 | |
496 2013 6.140305042 6.943878174 9999 180 | |
497 2013 11.65068913 6.28101778 9999 423 | |
498 2013 6.452498913 3.212517977 9999 3 | |
499 2013 9.813438416 8.706255913 9999 1136 | |
500 2013 5.829562187 8.412643433 9999 134 | |
501 2013 5.491979122 7.227431774 9999 131 | |
502 2013 4.830457211 6.317070961 9999 4 | |
503 2013 8.098073959 10.06367397 9999 114 | |
504 2013 5.524991035 5.78508997 9999 12 | |
505 2013 9.055509567 7.378750801 9999 456 | |
506 2013 9.071746826 7.4770298 9999 469 | |
507 2013 11.91921616 7.8134799 9999 592 | |
508 2013 11.674963 11.78326893 9999 391 | |
509 2013 12.06335831 8.466412544 9999 494 | |
510 2013 7.781454086 7.940456867 9999 178 | |
511 2013 7.621442795 5.224215031 9999 441 | |
512 2013 12.68539238 9.131362915 9999 381 | |
513 2013 6.141980171 6.841929913 9999 140 | |
514 2013 8.862010956 9.635557175 9999 220 | |
515 2013 6.224314213 8.322528839 9999 56 | |
516 2013 6.361278057 5.585179806 9999 95 | |
517 2013 11.55898476 6.011188984 9999 445 | |
518 2013 5.600441933 7.255177975 9999 166 | |
519 2013 9.215433121 3.203993082 9999 390 | |
520 2013 4.922968864 7.599792957 9999 54 | |
521 2013 8.524722099 8.514258385 9999 188 | |
522 2013 9.143763542 8.381280899 9999 513 | |
523 2013 10.01810932 13.12521935 9999 549 | |
524 2013 6.224442005 8.367934227 9999 54 | |
525 2013 6.442638874 8.931405067 9999 120 | |
526 2013 7.470265865 5.72592783 9999 324 | |
527 2013 12.67190838 13.64135933 9999 286 | |
528 2013 0 0 9999 9999 | |
529 2013 6.334579945 6.841393948 9999 36 | |
530 2013 12.53547096 8.544219971 9999 426 | |
531 2013 8.967464447 3.806550026 9999 394 | |
532 2013 12.01773453 9.080181122 9999 408 | |
533 2013 11.62011147 13.47614861 9999 339 | |
534 2013 9.075201988 7.327501774 9999 380 | |
535 2013 8.876495361 7.695011139 9999 304 | |
536 2013 13.25034523 4.940611839 9999 264 | |
537 2013 6.936139107 7.556367874 9999 421 | |
538 2013 11.9399128 11.3097477 9999 392 | |
539 2013 5.529131889 7.12154007 9999 127 | |
540 2013 12.34061337 13.0512867 9999 307 | |
541 2013 8.687992096 3.412813902 9999 483 | |
542 2013 9.119642258 5.945372105 9999 174 | |
543 2013 11.84393215 8.126764297 9999 508 | |
544 2013 8.745118141 4.464231014 9999 336 | |
545 2013 0 0 9999 9999 | |
546 2013 7.913647175 7.50577879 9999 127 | |
547 2013 11.40662289 7.348553181 9999 686 | |
548 2013 10.95982742 5.190468788 9999 291 | |
549 2013 11.2539978 8.828160286 9999 597 | |
550 2013 12.15176868 9.162167549 9999 392 | |
551 2013 9.044897079 11.56583595 9999 382 | |
552 2013 10.07874966 6.015912056 9999 225 | |
553 2013 5.353118896 5.38639307 9999 6 | |
554 2013 12.89534187 4.687788963 9999 226 | |
555 2013 8.974456787 7.374715805 9999 420 | |
556 2013 9.544494629 10.9153986 9999 364 | |
557 2013 5.910192013 8.092837334 9999 42 | |
558 2013 12.38402557 7.378543854 9999 511 | |
559 2013 11.08820248 5.438432217 9999 314 | |
560 2013 7.273801804 9.996310234 9999 256 | |
561 2013 7.788361073 4.57069397 9999 336 | |
562 2013 12.97416973 11.40746307 9999 333 | |
563 2013 7.296585083 8.208769798 9999 146 | |
564 2013 8.959733963 7.077051163 9999 210 | |
565 2013 9.608769417 7.300629139 9999 522 | |
566 2013 7.422674179 4.4234519 9999 206 | |
567 2013 5.727279186 5.753005981 9999 11 | |
568 2013 8.854503632 7.882598877 9999 304 | |
569 2013 5.900629044 5.664855957 9999 10 | |
570 2013 8.509775162 4.530086994 9999 320 | |
571 2013 10.32312679 11.35839367 9999 307 | |
572 2013 5.082276821 7.369536877 9999 60 | |
573 2013 13.19460201 5.449222088 9999 337 | |
574 2013 5.382237911 5.781857967 9999 6 | |
575 2013 5.188465118 7.844778061 9999 51 | |
576 2013 5.56307888 7.847085953 9999 151 | |
577 2013 5.043297768 6.393027782 9999 12 | |
578 2013 7.809937954 6.748363018 9999 49 | |
579 2013 10.44404984 7.498599052 9999 636 | |
580 2013 11.50673771 9.98084259 9999 406 | |
581 2013 7.854454041 7.876807213 9999 118 | |
582 2013 5.096020222 7.966481209 9999 90 | |
583 2013 4.652163982 7.935231209 9999 27 | |
584 2013 7.626784801 4.781214237 9999 404 | |
585 2013 13.06123734 12.83566475 9999 301 | |
586 2013 6.681233883 2.999481916 9999 56 | |
587 2013 5.992658138 6.740740776 9999 23 | |
588 2013 6.718103886 3.861782074 9999 44 | |
589 2013 5.745570183 8.198887825 9999 87 | |
590 2013 13.22296906 5.512829781 9999 352 | |
591 2013 7.909457207 4.322790146 9999 380 | |
592 2013 5.606701851 7.150320053 9999 173 | |
593 2013 11.95667362 10.60402203 9999 381 | |
594 2013 8.297745705 4.526146889 9999 330 | |
595 2013 9.191591263 9.678141594 9999 881 | |
596 2013 12.27316666 4.418654919 9999 236 | |
597 2013 11.42595959 5.247220993 9999 390 | |
598 2013 10.17502117 11.19550705 9999 400 | |
599 2013 8.59975338 6.84779501 9999 101 | |
600 2013 9.854514122 11.68151283 9999 508 | |
601 2013 4.866164207 5.814328194 9999 4 | |
602 2013 4.710534096 8.273756981 9999 36 | |
603 2013 13.06520939 5.172954082 9999 261 | |
604 2013 11.27316093 9.881827354 9999 442 | |
605 2013 13.13165569 10.49943542 9999 346 | |
606 2013 10.25387573 13.27065086 9999 581 | |
607 2013 9.182609558 7.190781116 9999 443 | |
608 2013 6.614066124 6.102107048 9999 239 | |
609 2013 0 0 9999 9999 | |
610 2013 6.204235077 7.848501205 9999 70 | |
611 2013 10.41254044 5.455511093 9999 337 | |
612 2013 6.574130058 3.285036087 9999 26 | |
613 2013 7.376449108 3.90309906 9999 192 | |
614 2013 7.809783936 4.926864147 9999 395 | |
615 2013 5.132397175 5.922073841 9999 3 | |
616 2013 7.412502766 7.756599903 9999 382 | |
617 2013 7.524203777 7.160336018 9999 334 | |
618 2013 6.813469887 11.0540638 9999 1465 | |
619 2013 6.592214108 3.320446968 9999 25 | |
620 2013 12.95161057 7.742992878 9999 469 | |
621 2013 6.808987141 2.837764025 9999 80 | |
622 2013 12.11425209 8.5741539 9999 452 | |
623 2013 6.011558056 7.793280125 9999 54 | |
624 2013 12.01488018 8.513586998 9999 481 | |
625 2013 4.310359001 6.190186024 9999 4 | |
626 2013 7.162040234 3.333034039 9999 74 | |
627 2013 4.923227787 8.328329086 9999 14 | |
628 2013 11.91662788 4.446004868 9999 299 | |
629 2013 7.048392773 3.016592979 9999 54 | |
630 2013 6.575455189 3.279536009 9999 39 | |
631 2013 5.445796967 5.470353127 9999 3 | |
632 2013 8.19567585 7.746035099 9999 90 | |
633 2013 5.350739002 8.324380875 9999 96 | |
634 2013 6.556821823 3.342547894 9999 19 | |
635 2013 10.37738228 12.56521511 9999 352 | |
636 2013 11.81532478 13.08666992 9999 337 | |
637 2013 8.717259407 8.531830788 9999 270 | |
638 2013 6.649940014 3.910928011 9999 12 | |
639 2013 10.36617279 11.27972984 9999 319 | |
640 2013 9.369888306 6.388319969 9999 122 | |
641 2013 4.804073811 6.974081039 9999 8 | |
642 2013 6.619562149 5.131793976 9999 14 | |
643 2013 5.100967884 7.347211838 9999 56 | |
644 2013 6.123767853 8.097766876 9999 52 | |
645 2013 7.646910191 6.344130993 9999 198 | |
646 2013 8.966161728 11.81359863 9999 455 | |
647 2013 12.95827389 8.127231598 9999 507 | |
648 2013 7.293197155 9.682044983 9999 190 | |
649 2013 6.826695919 4.998706818 9999 168 | |
650 2013 10.18217278 13.23057938 9999 583 | |
651 2013 6.502338886 3.270670891 9999 12 | |
652 2013 4.613304138 8.036169052 9999 23 | |
653 2013 12.46638393 4.192451 9999 232 | |
654 2013 7.820349216 4.476173878 9999 313 | |
655 2013 7.533835888 4.456968784 9999 253 | |
656 2013 6.53063488 7.111674786 9999 96 | |
657 2013 10.82236004 3.937306881 9999 322 | |
658 2013 12.04751873 10.1156311 9999 364 | |
659 2013 9.611483574 11.4318037 9999 321 | |
660 2013 11.33849335 7.553709984 9999 682 | |
661 2013 8.632711411 6.802451134 9999 73 | |
662 2013 5.317822933 7.45929718 9999 112 | |
663 2013 5.124670982 7.358140945 9999 63 | |
664 2013 10.55120277 5.451173782 9999 322 | |
665 2013 13.68623543 13.34016705 9999 285 | |
666 2013 9.722688675 8.550149918 9999 952 | |
667 2013 5.829082966 5.829136848 9999 23 | |
668 2013 6.90228796 3.660125971 9999 102 | |
669 2013 8.39462471 8.356697083 9999 158 | |
670 2013 13.24866199 13.59589672 9999 282 | |
671 2013 8.638174057 10.78406906 9999 152 | |
672 2013 6.838489056 3.637571096 9999 33 | |
673 2013 12.54415512 6.659695148 9999 410 | |
674 2013 7.852111816 3.937180042 9999 285 | |
675 2013 11.36030674 4.554956913 9999 184 | |
676 2013 6.609875202 3.519448042 9999 34 | |
677 2013 12.04128456 8.480418205 9999 488 | |
678 2013 4.336702824 6.259251118 9999 7 | |
679 2013 9.162513733 6.995730877 9999 236 | |
680 2013 7.596036911 5.014825821 9999 451 | |
681 2013 4.707787991 7.293325901 9999 19 | |
682 2013 4.478648186 7.496496201 9999 7 | |
683 2013 13.01863289 11.1324501 9999 336 | |
684 2013 7.399073124 3.884337902 9999 204 | |
685 2013 5.939873219 8.85042572 9999 129 | |
686 2013 9.366997719 12.55161095 9999 251 | |
687 2013 12.04432583 8.481748581 9999 490 | |
688 2013 6.686470985 3.296166897 9999 54 | |
689 2013 6.770333767 6.350084782 9999 318 | |
690 2013 6.360219955 7.68186903 9999 87 | |
691 2013 9.896175385 8.890274048 9999 1242 | |
692 2013 5.324093819 5.800796032 9999 7 | |
693 2013 4.730405807 7.449203968 9999 31 | |
694 2013 4.893463135 5.735602856 9999 7 | |
695 2013 6.849061966 7.378249168 9999 351 | |
696 2013 7.821073055 6.099531174 9999 428 | |
697 2013 8.313542366 4.388549805 9999 389 | |
698 2013 12.77862263 6.807141781 9999 402 | |
699 2013 6.149952888 6.797822952 9999 96 | |
700 2013 12.43729877 8.840592384 9999 402 | |
701 2013 10.28846836 11.96678925 9999 351 | |
702 2013 11.69914055 9.917581558 9999 393 | |
703 2013 13.05762959 5.238102913 9999 292 | |
704 2013 4.840835094 7.894640923 9999 43 | |
705 2013 7.566977024 3.151427984 9999 173 | |
706 2013 8.972640991 5.200414181 9999 115 | |
707 2013 9.695055962 6.475028038 9999 305 | |
708 2013 9.843371391 11.17696667 9999 474 | |
709 2013 7.083759785 4.841296196 9999 257 | |
710 2013 7.370053768 4.191195965 9999 199 | |
711 2013 11.91784191 8.34602356 9999 476 | |
712 2013 9.243076324 5.734275818 9999 120 | |
713 2013 5.863639832 6.840764999 9999 69 | |
714 2013 7.250219822 5.217352867 9999 343 | |
715 2013 11.58120823 10.4790926 9999 410 | |
716 2013 10.67346478 8.398960114 9999 712 | |
717 2013 11.17636204 7.121240139 9999 675 | |
718 2013 6.077157021 4.916499138 9999 4 | |
719 2013 10.2877121 12.75310421 9999 472 | |
720 2013 7.961423874 3.591341972 9999 297 | |
721 2013 7.147946835 3.352907896 9999 60 | |
722 2013 7.334420204 8.976705551 9999 222 | |
723 2013 6.125348091 6.793296814 9999 110 | |
724 2013 13.60665989 5.098847866 9999 291 | |
725 2013 6.208886147 5.435140133 9999 21 | |
726 2013 5.119204044 6.65871191 9999 16 | |
727 2013 6.639022827 3.340625048 9999 52 | |
728 2013 13.08822727 7.233168125 9999 414 | |
729 2013 5.943780899 4.970736027 9999 4 | |
730 2013 8.977145195 9.781248093 9999 241 | |
731 2013 11.16858578 7.643307209 9999 684 | |
732 2013 11.30204964 10.48523617 9999 430 | |
733 2013 10.45437336 11.06483269 9999 536 | |
734 2013 6.670125961 3.678612947 9999 22 | |
735 2013 7.28415823 4.573843002 9999 181 | |
736 2013 6.011437893 7.086194038 9999 314 | |
737 2013 8.117333412 6.854475021 9999 89 | |
738 2013 12.90423489 7.979998112 9999 512 | |
739 2013 11.69622612 9.02011013 9999 444 | |
740 2013 10.34993458 3.737298012 9999 314 | |
741 2013 6.500041008 2.938150883 9999 13 | |
742 2013 12.55960846 6.96474123 9999 435 | |
743 2013 6.288426876 5.689868927 9999 66 | |
744 2013 10.62365437 6.444470882 9999 431 | |
745 2013 9.276733398 7.951488972 9999 416 | |
746 2013 6.322980881 6.416070938 9999 271 | |
747 2013 5.070137978 6.727293015 9999 16 | |
748 2013 9.36229229 9.424356461 9999 1204 | |
749 2013 9.023282051 6.316563129 9999 126 | |
750 2013 7.707997799 5.498397827 9999 441 | |
751 2013 7.507132053 4.444925785 9999 239 | |
752 2013 12.70323277 9.462572098 9999 364 | |
753 2013 7.206988811 5.579329967 9999 346 | |
754 2013 10.69955254 8.263839722 9999 699 | |
755 2013 12.38158321 9.689189911 9999 372 | |
756 2013 7.563789845 6.169151783 9999 443 | |
757 2013 4.884883881 8.470667839 9999 56 | |
758 2013 6.90226984 8.097114563 9999 81 | |
759 2013 8.660406113 3.522779942 9999 350 | |
760 2013 12.01451015 8.512271881 9999 481 | |
761 2013 5.131645203 7.562385082 9999 79 | |
762 2013 5.015734196 7.922836781 9999 66 | |
763 2013 5.646946907 7.836451054 9999 184 | |
764 2013 5.533006191 7.4910779 9999 154 | |
765 2013 9.233963966 8.471399307 9999 548 | |
766 2013 12.66535473 6.793773174 9999 418 | |
767 2013 7.814520836 7.020373821 9999 138 | |
768 2013 9.799688339 11.92572021 9999 200 | |
769 2013 4.959310055 5.631937027 9999 6 | |
770 2013 12.22079945 9.328688622 9999 384 | |
771 2013 7.988352776 5.129855156 9999 530 | |
772 2013 4.59337616 5.668155193 9999 4 | |
773 2013 5.425367832 7.119244099 9999 85 | |
774 2013 12.0595808 10.56934166 9999 373 | |
775 2013 7.600355148 5.218242168 9999 412 | |
776 2013 5.652175903 7.295176029 9999 180 | |
777 2013 7.514677048 6.484442234 9999 224 | |
778 2013 5.821661949 7.029830933 9999 160 | |
779 2013 12.44460011 7.306179047 9999 492 | |
780 2013 8.83527565 4.844874859 9999 237 | |
781 2013 6.463512897 3.35255909 9999 6 | |
782 2013 13.73571968 5.760183811 9999 319 | |
783 2013 7.497029781 8.820810318 9999 149 | |
784 2013 9.52889061 10.36649799 9999 337 | |
785 2013 11.76347256 10.47732067 9999 400 | |
786 2013 7.782101154 9.538207054 9999 141 | |
787 2013 12.43102264 4.807837963 9999 264 | |
788 2013 5.310964108 7.808506012 9999 68 | |
789 2013 10.25374126 11.18117523 9999 442 | |
790 2013 6.438932896 3.45627594 9999 8 | |
791 2013 6.338823795 5.594767094 9999 89 | |
792 2013 5.406517982 7.129479885 9999 94 | |
793 2013 8.794115067 11.4131546 9999 239 | |
794 2013 7.592851162 5.665532112 9999 457 | |
795 2013 12.22334385 8.314229012 9999 505 | |
796 2013 9.248912811 7.277954102 9999 508 | |
797 2013 5.953987122 7.08356905 9999 272 | |
798 2013 6.049313068 7.751943111 9999 41 | |
799 2013 5.961636066 7.55788517 9999 67 | |
800 2013 5.071500778 5.863852024 9999 21 | |
801 2013 12.50737095 4.633050919 9999 254 | |
802 2013 9.691541672 11.94375706 9999 357 | |
803 2013 5.437981129 7.884078026 9999 159 | |
804 2013 4.767857075 6.150217056 9999 8 | |
805 2013 6.33428812 8.079277992 9999 76 | |
806 2013 12.00359058 8.500859261 9999 485 | |
807 2013 13.09723282 7.934370041 9999 501 | |
808 2013 12.00967598 8.507089615 9999 498 | |
809 2013 11.6410141 8.442277908 9999 494 | |
810 2013 6.166097164 7.953141212 9999 58 | |
811 2013 12.51289558 6.892831802 9999 436 | |
812 2013 5.848890781 6.136666775 9999 32 | |
813 2013 6.190728188 4.86485815 9999 6 | |
814 2013 10.48492527 7.391393185 9999 575 | |
815 2013 6.549925804 3.363394976 9999 25 | |
816 2013 6.029596806 8.872977257 9999 109 | |
817 2013 6.475142956 3.368448973 9999 1 | |
818 2013 6.861199856 3.705370903 9999 59 | |
819 2013 9.082367897 7.501654148 9999 500 | |
820 2013 6.435023785 7.518791199 9999 207 | |
821 2013 6.86084795 5.950017929 9999 79 | |
822 2013 12.02444553 8.47630024 9999 490 | |
823 2013 5.804532051 7.289972782 9999 107 | |
824 2013 11.83651543 13.093503 9999 336 | |
825 2013 8.633371353 6.416810989 9999 55 | |
826 2013 13.26809978 7.91971302 9999 458 | |
827 2013 11.08391762 11.15569019 9999 319 | |
828 2013 7.23139286 4.886919975 9999 253 | |
829 2013 6.195095062 6.943832874 9999 153 | |
830 2013 13.07620621 5.23404789 9999 264 | |
831 2013 7.832773209 5.022428036 9999 479 | |
832 2013 4.968501091 8.339671135 9999 63 | |
833 2013 12.3134737 8.682160378 9999 434 | |
834 2013 6.471127987 7.571540833 9999 140 | |
835 2013 6.619410038 3.309449911 9999 48 | |
836 2013 6.028327942 6.962905884 9999 203 | |
837 2013 10.44188976 7.455391884 9999 612 | |
838 2013 5.502847195 7.013101101 9999 76 | |
839 2013 10.96724606 10.90950489 9999 369 | |
840 2013 10.81551456 7.263127804 9999 621 | |
841 2013 6.848289967 8.434495926 9999 155 | |
842 2013 11.22419453 13.09362221 9999 370 | |
843 2013 6.18328619 8.368608475 9999 45 | |
844 2013 7.943531036 4.97516489 9999 516 | |
845 2013 5.549491882 6.077196121 9999 11 | |
846 2013 11.1978569 9.437788963 9999 497 | |
847 2013 5.963952065 7.23397398 9999 173 | |
848 2013 10.96121693 9.556173325 9999 468 | |
849 2013 6.028658867 6.83181715 9999 82 | |
850 2013 8.529780388 7.788127899 9999 262 | |
851 2013 4.896903038 7.131717205 9999 35 | |
852 2013 4.684546947 7.299867153 9999 27 | |
853 2013 5.035319805 7.964703083 9999 69 | |
854 2013 7.650428772 5.532053947 9999 402 | |
855 2013 6.56306982 8.808678627 9999 109 | |
856 2013 4.933342934 7.885077 9999 48 | |
857 2013 6.654584885 7.425133228 9999 471 | |
858 2013 9.159591675 7.348256111 9999 438 | |
859 2013 5.155015945 6.573445797 9999 15 | |
860 2013 7.122211933 7.796390057 9999 214 | |
861 2013 10.44512844 7.491026878 9999 640 | |
862 2013 11.577281 7.078837872 9999 666 | |
863 2013 7.851937771 4.489834785 9999 322 | |
864 2013 7.987791061 7.848826885 9999 65 | |
865 2013 7.187582016 9.677511215 9999 215 | |
866 2013 9.483827591 7.702942848 9999 675 | |
867 2013 7.927627087 4.647344112 9999 357 | |
868 2013 11.73245335 3.725743055 9999 164 | |
869 2013 4.785543919 6.314492226 9999 10 | |
870 2013 12.03488827 6.504733086 9999 460 | |
871 2013 5.755591869 6.885817051 9999 77 | |
872 2013 7.317220211 5.068757057 9999 299 | |
873 2013 8.946452141 7.064910889 9999 184 | |
874 2013 9.760582924 9.748821259 9999 595 | |
875 2013 9.209026337 12.50168896 9999 169 | |
876 2013 6.991184235 5.737863064 9999 201 | |
877 2013 11.2859478 9.745697021 9999 438 | |
878 2013 7.78420496 5.714917183 9999 527 | |
879 2013 7.472071171 4.543944836 9999 262 | |
880 2013 6.028782845 7.093512058 9999 224 | |
881 2013 7.394563198 3.938886881 9999 211 | |
882 2013 7.603703976 5.112500191 9999 463 | |
883 2013 10.54893112 4.635241032 9999 149 | |
884 2013 8.407709122 3.361593008 9999 293 | |
885 2013 9.55261898 11.22220993 9999 320 | |
886 2013 4.59559679 7.720881939 9999 22 | |
887 2013 11.71619701 9.349687576 9999 459 | |
888 2013 6.716790199 11.25664711 9999 1562 | |
889 2013 7.189299107 6.797412872 9999 261 | |
890 2013 12.59103394 13.68149757 9999 288 | |
891 2013 11.75771141 10.13857937 9999 393 | |
892 2013 6.353044033 5.581831932 9999 83 | |
893 2013 4.738060951 7.436819077 9999 24 | |
894 2013 6.348133087 4.965201855 9999 19 | |
895 2013 12.28947926 9.124987602 9999 388 | |
896 2013 10.18334103 12.79183292 9999 530 |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"huge_input": [{"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_1_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_1_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_1_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_1_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_1_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_1_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_1_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_1_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_1_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_1_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_1_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_1_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_1_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_1_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_1_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_1_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_1_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_1_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_1_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_1_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_1_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_1_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_1_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.185091972,7.715280056/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_1_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_2_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_2_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_2_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_2_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_2_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_2_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_2_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_2_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_2_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_2_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_2_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_2_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_2_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_2_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_2_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_2_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_2_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_2_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_2_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_2_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_2_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_2_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_2_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.348506927,8.833737373/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_2_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_3_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_3_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_3_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_3_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_3_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_3_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_3_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_3_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_3_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_3_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_3_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_3_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_3_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_3_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_3_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_3_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_3_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_3_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_3_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_3_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_3_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_3_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_3_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.181493759,6.376670837/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_3_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_4_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_4_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_4_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_4_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_4_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_4_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_4_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_4_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_4_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_4_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_4_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_4_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_4_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_4_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_4_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_4_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_4_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_4_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_4_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_4_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_4_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_4_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_4_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.685192108,5.988824844/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_4_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_5_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_5_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_5_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_5_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_5_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_5_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_5_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_5_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_5_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_5_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_5_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_5_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_5_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_5_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_5_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_5_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_5_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_5_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_5_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_5_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_5_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_5_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_5_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.14755154,6.713367939/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_5_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_6_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_6_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_6_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_6_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_6_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_6_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_6_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_6_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_6_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_6_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_6_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_6_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_6_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_6_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_6_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_6_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_6_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_6_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_6_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_6_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_6_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_6_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_6_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.315398216,9.686684608/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_6_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_7_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_7_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_7_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_7_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_7_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_7_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_7_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_7_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_7_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_7_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_7_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_7_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_7_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_7_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_7_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_7_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_7_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_7_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_7_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_7_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_7_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_7_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_7_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.116501808,4.814712048/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_7_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_8_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_8_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_8_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_8_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_8_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_8_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_8_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_8_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_8_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_8_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_8_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_8_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_8_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_8_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_8_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_8_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_8_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_8_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_8_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_8_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_8_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_8_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_8_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.313765526,7.745061874/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_8_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_9_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_9_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_9_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_9_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_9_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_9_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_9_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_9_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_9_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_9_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_9_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_9_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_9_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_9_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_9_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_9_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_9_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_9_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_9_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_9_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_9_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_9_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_9_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.37945509,5.628859043/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_9_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_10_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_10_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_10_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_10_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_10_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_10_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_10_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_10_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_10_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_10_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_10_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_10_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_10_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_10_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_10_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_10_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_10_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_10_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_10_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_10_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_10_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_10_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_10_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.766513824,5.739295959/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_10_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_11_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_11_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_11_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_11_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_11_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_11_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_11_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_11_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_11_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_11_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_11_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_11_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_11_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_11_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_11_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_11_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_11_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_11_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_11_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_11_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_11_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_11_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_11_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.45174313,9.410819054/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_11_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_12_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_12_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_12_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_12_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_12_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_12_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_12_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_12_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_12_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_12_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_12_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_12_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_12_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_12_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_12_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_12_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_12_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_12_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_12_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_12_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_12_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_12_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_12_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.0340786,8.490412712/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_12_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_14_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_14_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_14_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_14_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_14_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_14_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_14_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_14_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_14_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_14_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_14_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_14_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_14_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_14_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_14_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_14_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_14_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_14_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_14_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_14_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_14_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_14_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_14_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.482021809,7.128664017/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_14_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_15_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_15_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_15_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_15_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_15_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_15_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_15_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_15_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_15_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_15_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_15_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_15_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_15_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_15_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_15_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_15_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_15_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_15_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_15_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_15_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_15_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_15_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_15_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.178322792,7.813354015/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_15_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_16_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_16_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_16_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_16_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_16_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_16_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_16_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_16_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_16_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_16_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_16_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_16_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_16_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_16_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_16_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_16_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_16_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_16_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_16_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_16_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_16_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_16_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_16_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.94222927,6.82805109/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_16_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_17_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_17_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_17_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_17_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_17_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_17_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_17_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_17_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_17_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_17_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_17_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_17_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_17_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_17_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_17_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_17_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_17_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_17_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_17_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_17_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_17_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_17_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_17_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.546014786,8.451321602/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_17_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_18_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_18_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_18_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_18_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_18_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_18_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_18_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_18_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_18_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_18_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_18_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_18_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_18_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_18_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_18_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_18_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_18_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_18_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_18_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_18_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_18_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_18_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_18_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.168307781,6.514565945/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_18_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_19_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_19_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_19_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_19_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_19_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_19_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_19_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_19_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_19_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_19_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_19_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_19_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_19_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_19_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_19_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_19_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_19_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_19_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_19_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_19_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_19_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_19_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_19_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.889927864,6.664562225/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_19_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_20_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_20_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_20_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_20_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_20_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_20_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_20_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_20_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_20_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_20_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_20_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_20_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_20_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_20_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_20_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_20_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_20_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_20_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_20_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_20_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_20_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_20_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_20_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.137685776,4.262464046/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_20_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_21_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_21_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_21_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_21_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_21_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_21_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_21_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_21_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_21_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_21_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_21_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_21_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_21_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_21_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_21_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_21_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_21_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_21_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_21_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_21_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_21_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_21_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_21_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.130043983,9.840171814/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_21_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_22_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_22_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_22_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_22_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_22_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_22_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_22_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_22_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_22_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_22_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_22_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_22_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_22_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_22_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_22_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_22_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_22_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_22_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_22_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_22_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_22_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_22_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_22_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/13.76767826,5.598807812/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_22_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_23_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_23_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_23_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_23_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_23_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_23_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_23_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_23_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_23_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_23_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_23_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_23_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_23_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_23_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_23_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_23_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_23_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_23_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_23_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_23_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_23_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_23_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_23_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.78578091,7.589403152/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_23_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_24_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_24_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_24_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_24_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_24_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_24_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_24_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_24_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_24_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_24_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_24_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_24_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_24_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_24_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_24_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_24_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_24_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_24_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_24_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_24_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_24_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_24_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_24_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.735454082,8.448335648/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_24_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_25_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_25_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_25_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_25_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_25_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_25_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_25_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_25_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_25_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_25_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_25_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_25_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_25_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_25_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_25_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_25_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_25_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_25_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_25_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_25_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_25_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_25_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_25_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.113871098,8.219959259/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_25_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_26_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_26_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_26_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_26_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_26_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_26_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_26_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_26_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_26_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_26_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_26_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_26_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_26_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_26_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_26_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_26_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_26_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_26_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_26_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_26_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_26_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_26_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_26_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.400485992,4.004473209/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_26_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_27_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_27_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_27_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_27_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_27_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_27_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_27_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_27_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_27_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_27_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_27_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_27_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_27_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_27_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_27_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_27_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_27_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_27_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_27_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_27_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_27_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_27_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_27_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.806624889,7.004797935/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_27_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_28_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_28_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_28_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_28_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_28_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_28_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_28_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_28_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_28_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_28_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_28_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_28_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_28_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_28_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_28_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_28_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_28_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_28_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_28_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_28_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_28_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_28_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_28_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.396613121,7.917805195/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_28_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_29_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_29_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_29_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_29_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_29_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_29_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_29_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_29_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_29_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_29_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_29_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_29_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_29_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_29_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_29_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_29_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_29_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_29_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_29_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_29_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_29_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_29_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_29_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.67301655,5.001640797/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_29_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_30_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_30_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_30_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_30_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_30_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_30_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_30_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_30_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_30_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_30_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_30_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_30_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_30_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_30_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_30_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_30_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_30_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_30_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_30_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_30_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_30_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_30_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_30_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.272634029,5.266348839/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_30_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_31_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_31_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_31_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_31_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_31_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_31_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_31_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_31_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_31_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_31_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_31_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_31_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_31_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_31_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_31_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_31_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_31_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_31_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_31_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_31_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_31_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_31_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_31_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.750150681,8.090164185/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_31_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_32_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_32_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_32_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_32_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_32_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_32_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_32_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_32_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_32_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_32_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_32_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_32_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_32_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_32_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_32_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_32_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_32_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_32_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_32_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_32_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_32_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_32_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_32_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.96945858,4.158634186/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_32_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_33_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_33_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_33_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_33_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_33_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_33_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_33_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_33_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_33_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_33_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_33_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_33_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_33_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_33_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_33_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_33_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_33_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_33_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_33_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_33_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_33_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_33_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_33_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.9854126,10.86431026/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_33_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_34_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_34_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_34_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_34_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_34_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_34_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_34_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_34_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_34_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_34_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_34_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_34_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_34_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_34_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_34_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_34_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_34_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_34_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_34_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_34_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_34_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_34_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_34_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.568768978,6.173435211/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_34_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_35_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_35_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_35_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_35_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_35_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_35_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_35_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_35_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_35_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_35_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_35_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_35_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_35_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_35_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_35_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_35_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_35_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_35_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_35_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_35_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_35_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_35_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_35_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.387544155,8.386034012/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_35_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_36_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_36_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_36_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_36_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_36_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_36_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_36_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_36_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_36_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_36_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_36_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_36_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_36_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_36_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_36_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_36_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_36_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_36_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_36_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_36_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_36_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_36_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_36_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.45276928,4.436203003/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_36_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_37_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_37_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_37_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_37_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_37_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_37_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_37_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_37_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_37_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_37_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_37_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_37_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_37_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_37_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_37_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_37_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_37_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_37_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_37_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_37_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_37_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_37_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_37_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.99616623,9.606444359/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_37_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_38_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_38_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_38_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_38_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_38_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_38_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_38_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_38_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_38_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_38_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_38_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_38_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_38_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_38_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_38_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_38_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_38_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_38_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_38_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_38_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_38_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_38_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_38_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.38484621,7.474165916/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_38_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_39_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_39_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_39_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_39_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_39_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_39_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_39_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_39_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_39_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_39_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_39_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_39_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_39_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_39_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_39_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_39_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_39_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_39_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_39_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_39_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_39_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_39_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_39_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.32484818,6.821461201/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_39_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_40_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_40_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_40_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_40_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_40_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_40_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_40_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_40_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_40_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_40_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_40_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_40_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_40_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_40_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_40_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_40_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_40_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_40_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_40_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_40_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_40_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_40_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_40_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.268223763,5.203633785/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_40_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_41_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_41_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_41_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_41_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_41_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_41_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_41_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_41_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_41_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_41_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_41_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_41_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_41_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_41_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_41_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_41_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_41_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_41_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_41_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_41_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_41_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_41_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_41_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.765458107,3.603125095/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_41_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_42_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_42_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_42_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_42_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_42_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_42_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_42_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_42_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_42_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_42_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_42_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_42_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_42_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_42_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_42_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_42_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_42_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_42_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_42_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_42_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_42_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_42_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_42_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.523577213,4.54863596/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_42_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_43_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_43_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_43_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_43_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_43_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_43_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_43_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_43_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_43_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_43_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_43_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_43_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_43_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_43_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_43_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_43_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_43_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_43_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_43_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_43_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_43_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_43_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_43_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.07060242,13.70263672/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_43_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_44_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_44_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_44_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_44_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_44_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_44_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_44_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_44_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_44_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_44_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_44_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_44_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_44_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_44_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_44_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_44_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_44_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_44_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_44_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_44_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_44_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_44_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_44_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.52958107,3.377935886/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_44_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_45_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_45_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_45_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_45_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_45_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_45_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_45_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_45_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_45_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_45_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_45_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_45_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_45_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_45_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_45_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_45_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_45_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_45_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_45_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_45_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_45_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_45_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_45_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.60753727,7.178458214/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_45_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_46_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_46_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_46_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_46_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_46_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_46_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_46_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_46_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_46_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_46_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_46_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_46_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_46_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_46_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_46_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_46_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_46_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_46_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_46_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_46_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_46_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_46_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_46_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.767329216,3.37847209/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_46_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_47_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_47_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_47_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_47_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_47_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_47_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_47_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_47_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_47_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_47_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_47_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_47_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_47_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_47_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_47_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_47_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_47_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_47_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_47_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_47_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_47_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_47_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_47_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.50355625,8.499361038/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_47_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_48_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_48_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_48_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_48_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_48_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_48_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_48_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_48_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_48_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_48_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_48_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_48_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_48_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_48_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_48_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_48_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_48_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_48_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_48_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_48_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_48_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_48_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_48_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.569454193,7.3020401/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_48_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_49_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_49_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_49_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_49_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_49_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_49_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_49_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_49_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_49_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_49_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_49_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_49_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_49_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_49_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_49_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_49_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_49_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_49_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_49_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_49_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_49_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_49_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_49_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.80479431,8.626042366/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_49_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_50_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_50_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_50_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_50_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_50_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_50_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_50_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_50_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_50_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_50_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_50_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_50_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_50_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_50_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_50_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_50_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_50_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_50_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_50_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_50_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_50_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_50_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_50_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.500911713,4.602337837/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_50_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_51_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_51_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_51_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_51_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_51_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_51_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_51_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_51_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_51_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_51_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_51_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_51_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_51_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_51_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_51_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_51_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_51_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_51_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_51_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_51_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_51_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_51_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_51_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.638459206,5.408666134/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_51_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_52_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_52_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_52_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_52_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_52_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_52_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_52_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_52_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_52_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_52_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_52_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_52_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_52_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_52_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_52_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_52_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_52_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_52_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_52_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_52_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_52_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_52_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_52_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.10831928,13.30737114/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_52_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_53_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_53_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_53_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_53_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_53_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_53_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_53_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_53_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_53_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_53_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_53_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_53_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_53_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_53_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_53_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_53_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_53_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_53_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_53_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_53_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_53_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_53_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_53_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/13.0170002,7.62386179/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_53_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_54_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_54_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_54_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_54_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_54_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_54_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_54_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_54_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_54_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_54_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_54_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_54_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_54_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_54_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_54_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_54_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_54_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_54_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_54_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_54_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_54_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_54_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_54_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.213366032,7.624369144/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_54_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_55_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_55_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_55_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_55_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_55_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_55_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_55_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_55_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_55_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_55_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_55_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_55_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_55_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_55_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_55_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_55_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_55_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_55_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_55_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_55_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_55_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_55_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_55_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.039227962,7.743902206/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_55_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_56_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_56_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_56_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_56_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_56_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_56_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_56_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_56_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_56_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_56_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_56_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_56_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_56_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_56_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_56_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_56_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_56_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_56_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_56_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_56_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_56_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_56_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_56_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.955776215,8.307408333/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_56_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_57_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_57_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_57_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_57_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_57_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_57_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_57_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_57_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_57_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_57_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_57_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_57_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_57_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_57_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_57_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_57_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_57_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_57_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_57_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_57_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_57_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_57_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_57_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.67834282,10.70397663/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_57_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_58_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_58_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_58_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_58_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_58_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_58_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_58_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_58_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_58_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_58_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_58_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_58_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_58_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_58_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_58_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_58_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_58_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_58_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_58_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_58_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_58_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_58_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_58_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.290337086,6.094225883/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_58_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_59_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_59_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_59_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_59_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_59_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_59_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_59_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_59_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_59_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_59_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_59_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_59_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_59_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_59_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_59_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_59_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_59_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_59_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_59_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_59_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_59_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_59_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_59_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.266207218,6.187648773/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_59_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_60_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_60_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_60_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_60_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_60_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_60_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_60_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_60_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_60_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_60_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_60_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_60_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_60_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_60_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_60_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_60_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_60_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_60_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_60_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_60_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_60_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_60_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_60_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.846395016,5.991781235/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_60_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_61_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_61_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_61_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_61_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_61_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_61_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_61_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_61_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_61_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_61_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_61_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_61_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_61_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_61_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_61_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_61_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_61_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_61_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_61_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_61_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_61_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_61_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_61_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.398367882,7.160630226/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_61_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_62_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_62_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_62_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_62_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_62_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_62_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_62_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_62_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_62_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_62_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_62_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_62_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_62_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_62_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_62_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_62_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_62_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_62_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_62_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_62_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_62_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_62_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_62_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.512886047,3.204782009/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_62_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_63_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_63_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_63_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_63_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_63_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_63_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_63_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_63_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_63_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_63_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_63_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_63_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_63_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_63_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_63_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_63_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_63_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_63_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_63_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_63_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_63_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_63_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_63_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.797826767,6.254014969/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_63_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_64_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_64_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_64_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_64_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_64_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_64_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_64_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_64_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_64_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_64_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_64_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_64_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_64_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_64_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_64_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_64_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_64_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_64_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_64_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_64_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_64_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_64_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_64_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.703455925,8.010665894/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_64_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_65_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_65_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_65_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_65_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_65_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_65_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_65_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_65_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_65_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_65_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_65_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_65_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_65_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_65_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_65_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_65_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_65_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_65_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_65_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_65_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_65_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_65_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_65_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.442687035,3.336106062/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_65_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_66_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_66_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_66_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_66_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_66_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_66_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_66_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_66_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_66_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_66_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_66_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_66_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_66_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_66_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_66_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_66_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_66_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_66_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_66_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_66_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_66_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_66_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_66_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.499321938,3.366342068/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_66_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_67_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_67_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_67_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_67_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_67_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_67_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_67_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_67_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_67_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_67_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_67_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_67_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_67_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_67_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_67_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_67_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_67_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_67_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_67_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_67_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_67_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_67_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_67_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.342510223,9.205836296/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_67_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_68_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_68_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_68_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_68_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_68_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_68_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_68_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_68_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_68_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_68_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_68_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_68_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_68_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_68_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_68_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_68_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_68_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_68_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_68_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_68_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_68_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_68_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_68_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.911438942,6.753847122/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_68_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_69_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_69_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_69_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_69_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_69_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_69_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_69_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_69_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_69_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_69_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_69_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_69_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_69_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_69_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_69_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_69_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_69_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_69_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_69_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_69_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_69_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_69_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_69_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.536667824,3.335089922/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_69_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_70_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_70_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_70_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_70_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_70_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_70_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_70_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_70_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_70_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_70_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_70_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_70_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_70_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_70_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_70_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_70_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_70_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_70_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_70_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_70_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_70_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_70_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_70_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.50534296,3.382469893/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_70_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_71_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_71_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_71_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_71_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_71_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_71_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_71_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_71_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_71_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_71_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_71_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_71_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_71_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_71_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_71_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_71_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_71_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_71_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_71_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_71_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_71_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_71_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_71_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.790872097,5.27493/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_71_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_72_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_72_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_72_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_72_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_72_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_72_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_72_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_72_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_72_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_72_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_72_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_72_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_72_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_72_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_72_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_72_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_72_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_72_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_72_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_72_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_72_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_72_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_72_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.909534931,7.070504189/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_72_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_73_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_73_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_73_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_73_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_73_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_73_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_73_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_73_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_73_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_73_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_73_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_73_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_73_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_73_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_73_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_73_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_73_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_73_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_73_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_73_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_73_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_73_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_73_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.601336956,7.333683014/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_73_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_74_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_74_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_74_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_74_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_74_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_74_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_74_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_74_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_74_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_74_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_74_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_74_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_74_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_74_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_74_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_74_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_74_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_74_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_74_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_74_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_74_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_74_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_74_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.283892632,12.81203747/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_74_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_75_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_75_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_75_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_75_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_75_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_75_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_75_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_75_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_75_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_75_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_75_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_75_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_75_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_75_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_75_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_75_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_75_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_75_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_75_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_75_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_75_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_75_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_75_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.347704887,5.866577148/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_75_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_76_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_76_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_76_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_76_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_76_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_76_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_76_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_76_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_76_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_76_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_76_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_76_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_76_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_76_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_76_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_76_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_76_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_76_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_76_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_76_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_76_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_76_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_76_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.771730423,5.797715187/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_76_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_77_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_77_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_77_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_77_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_77_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_77_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_77_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_77_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_77_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_77_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_77_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_77_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_77_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_77_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_77_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_77_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_77_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_77_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_77_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_77_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_77_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_77_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_77_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.25347328,12.00085068/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_77_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_78_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_78_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_78_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_78_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_78_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_78_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_78_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_78_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_78_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_78_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_78_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_78_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_78_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_78_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_78_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_78_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_78_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_78_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_78_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_78_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_78_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_78_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_78_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.30515862,11.02757931/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_78_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_79_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_79_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_79_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_79_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_79_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_79_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_79_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_79_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_79_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_79_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_79_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_79_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_79_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_79_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_79_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_79_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_79_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_79_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_79_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_79_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_79_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_79_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_79_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.22221375,9.404447556/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_79_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_80_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_80_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_80_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_80_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_80_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_80_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_80_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_80_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_80_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_80_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_80_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_80_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_80_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_80_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_80_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_80_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_80_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_80_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_80_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_80_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_80_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_80_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_80_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.464136124,7.190254211/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_80_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_81_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_81_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_81_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_81_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_81_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_81_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_81_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_81_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_81_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_81_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_81_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_81_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_81_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_81_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_81_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_81_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_81_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_81_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_81_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_81_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_81_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_81_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_81_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.379535198,3.902972937/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_81_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_82_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_82_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_82_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_82_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_82_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_82_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_82_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_82_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_82_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_82_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_82_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_82_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_82_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_82_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_82_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_82_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_82_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_82_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_82_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_82_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_82_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_82_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_82_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.456657887,2.851144075/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_82_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_83_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_83_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_83_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_83_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_83_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_83_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_83_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_83_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_83_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_83_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_83_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_83_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_83_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_83_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_83_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_83_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_83_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_83_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_83_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_83_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_83_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_83_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_83_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.12543678,7.725948811/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_83_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_84_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_84_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_84_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_84_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_84_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_84_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_84_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_84_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_84_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_84_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_84_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_84_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_84_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_84_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_84_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_84_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_84_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_84_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_84_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_84_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_84_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_84_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_84_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.098192215,7.527573109/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_84_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_85_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_85_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_85_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_85_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_85_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_85_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_85_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_85_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_85_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_85_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_85_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_85_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_85_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_85_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_85_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_85_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_85_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_85_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_85_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_85_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_85_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_85_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_85_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.085017204,7.370816231/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_85_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_86_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_86_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_86_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_86_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_86_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_86_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_86_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_86_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_86_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_86_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_86_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_86_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_86_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_86_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_86_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_86_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_86_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_86_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_86_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_86_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_86_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_86_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_86_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.616168976,3.331314087/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_86_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_87_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_87_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_87_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_87_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_87_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_87_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_87_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_87_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_87_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_87_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_87_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_87_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_87_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_87_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_87_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_87_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_87_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_87_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_87_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_87_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_87_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_87_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_87_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.30947876,9.841553688/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_87_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_88_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_88_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_88_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_88_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_88_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_88_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_88_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_88_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_88_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_88_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_88_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_88_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_88_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_88_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_88_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_88_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_88_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_88_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_88_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_88_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_88_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_88_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_88_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.444894791,4.012999058/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_88_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_89_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_89_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_89_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_89_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_89_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_89_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_89_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_89_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_89_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_89_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_89_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_89_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_89_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_89_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_89_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_89_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_89_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_89_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_89_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_89_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_89_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_89_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_89_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.644287109,8.603730202/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_89_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_90_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_90_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_90_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_90_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_90_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_90_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_90_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_90_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_90_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_90_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_90_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_90_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_90_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_90_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_90_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_90_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_90_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_90_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_90_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_90_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_90_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_90_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_90_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.790890217,7.12138319/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_90_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_91_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_91_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_91_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_91_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_91_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_91_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_91_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_91_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_91_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_91_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_91_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_91_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_91_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_91_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_91_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_91_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_91_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_91_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_91_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_91_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_91_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_91_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_91_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.14131546,11.62034988/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_91_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_92_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_92_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_92_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_92_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_92_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_92_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_92_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_92_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_92_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_92_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_92_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_92_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_92_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_92_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_92_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_92_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_92_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_92_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_92_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_92_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_92_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_92_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_92_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.797304153,5.691788197/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_92_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_93_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_93_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_93_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_93_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_93_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_93_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_93_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_93_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_93_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_93_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_93_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_93_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_93_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_93_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_93_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_93_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_93_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_93_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_93_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_93_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_93_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_93_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_93_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.48587227,6.58379221/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_93_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_94_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_94_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_94_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_94_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_94_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_94_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_94_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_94_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_94_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_94_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_94_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_94_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_94_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_94_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_94_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_94_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_94_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_94_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_94_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_94_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_94_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_94_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_94_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.401896954,7.934858799/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_94_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_95_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_95_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_95_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_95_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_95_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_95_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_95_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_95_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_95_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_95_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_95_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_95_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_95_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_95_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_95_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_95_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_95_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_95_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_95_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_95_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_95_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_95_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_95_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.843252182,10.80591679/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_95_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_96_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_96_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_96_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_96_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_96_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_96_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_96_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_96_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_96_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_96_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_96_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_96_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_96_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_96_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_96_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_96_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_96_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_96_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_96_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_96_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_96_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_96_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_96_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.161450863,8.310816765/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_96_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_97_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_97_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_97_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_97_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_97_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_97_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_97_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_97_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_97_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_97_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_97_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_97_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_97_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_97_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_97_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_97_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_97_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_97_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_97_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_97_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_97_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_97_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_97_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.73254204,4.095201969/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_97_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_98_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_98_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_98_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_98_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_98_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_98_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_98_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_98_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_98_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_98_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_98_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_98_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_98_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_98_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_98_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_98_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_98_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_98_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_98_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_98_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_98_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_98_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_98_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.222609043,7.426634789/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_98_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_99_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_99_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_99_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_99_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_99_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_99_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_99_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_99_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_99_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_99_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_99_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_99_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_99_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_99_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_99_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_99_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_99_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_99_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_99_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_99_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_99_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_99_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_99_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.029460907,7.889520168/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_99_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_100_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_100_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_100_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_100_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_100_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_100_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_100_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_100_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_100_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_100_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_100_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_100_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_100_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_100_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_100_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_100_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_100_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_100_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_100_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_100_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_100_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_100_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_100_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/13.29999161,8.018676758/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_100_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_101_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_101_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_101_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_101_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_101_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_101_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_101_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_101_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_101_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_101_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_101_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_101_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_101_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_101_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_101_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_101_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_101_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_101_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_101_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_101_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_101_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_101_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_101_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.753528118,7.769925117/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_101_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_102_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_102_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_102_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_102_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_102_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_102_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_102_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_102_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_102_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_102_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_102_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_102_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_102_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_102_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_102_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_102_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_102_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_102_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_102_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_102_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_102_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_102_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_102_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.90620804,8.774534225/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_102_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_103_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_103_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_103_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_103_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_103_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_103_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_103_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_103_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_103_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_103_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_103_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_103_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_103_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_103_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_103_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_103_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_103_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_103_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_103_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_103_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_103_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_103_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_103_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.338482857,7.479266167/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_103_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_104_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_104_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_104_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_104_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_104_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_104_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_104_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_104_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_104_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_104_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_104_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_104_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_104_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_104_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_104_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_104_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_104_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_104_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_104_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_104_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_104_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_104_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_104_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.9238801,7.726976871/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_104_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_105_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_105_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_105_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_105_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_105_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_105_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_105_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_105_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_105_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_105_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_105_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_105_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_105_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_105_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_105_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_105_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_105_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_105_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_105_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_105_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_105_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_105_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_105_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.213439941,6.528436184/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_105_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_106_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_106_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_106_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_106_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_106_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_106_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_106_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_106_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_106_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_106_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_106_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_106_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_106_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_106_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_106_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_106_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_106_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_106_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_106_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_106_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_106_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_106_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_106_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.964446068,8.472935677/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_106_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_107_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_107_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_107_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_107_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_107_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_107_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_107_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_107_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_107_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_107_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_107_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_107_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_107_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_107_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_107_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_107_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_107_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_107_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_107_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_107_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_107_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_107_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_107_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.442368031,7.789120197/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_107_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_108_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_108_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_108_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_108_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_108_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_108_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_108_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_108_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_108_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_108_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_108_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_108_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_108_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_108_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_108_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_108_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_108_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_108_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_108_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_108_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_108_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_108_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_108_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.882061,10.45016384/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_108_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_109_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_109_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_109_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_109_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_109_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_109_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_109_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_109_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_109_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_109_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_109_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_109_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_109_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_109_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_109_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_109_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_109_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_109_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_109_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_109_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_109_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_109_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_109_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.737596035,4.438466072/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_109_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_110_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_110_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_110_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_110_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_110_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_110_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_110_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_110_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_110_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_110_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_110_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_110_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_110_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_110_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_110_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_110_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_110_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_110_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_110_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_110_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_110_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_110_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_110_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.627755165,7.831058025/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_110_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_111_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_111_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_111_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_111_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_111_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_111_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_111_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_111_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_111_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_111_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_111_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_111_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_111_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_111_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_111_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_111_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_111_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_111_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_111_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_111_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_111_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_111_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_111_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.2816391,12.00128937/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_111_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_112_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_112_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_112_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_112_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_112_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_112_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_112_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_112_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_112_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_112_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_112_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_112_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_112_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_112_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_112_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_112_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_112_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_112_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_112_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_112_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_112_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_112_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_112_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.43269444,8.235795975/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_112_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_113_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_113_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_113_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_113_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_113_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_113_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_113_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_113_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_113_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_113_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_113_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_113_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_113_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_113_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_113_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_113_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_113_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_113_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_113_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_113_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_113_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_113_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_113_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.710025787,12.27205563/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_113_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_114_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_114_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_114_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_114_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_114_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_114_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_114_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_114_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_114_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_114_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_114_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_114_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_114_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_114_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_114_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_114_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_114_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_114_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_114_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_114_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_114_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_114_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_114_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.157333851,3.339715004/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_114_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_115_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_115_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_115_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_115_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_115_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_115_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_115_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_115_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_115_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_115_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_115_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_115_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_115_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_115_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_115_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_115_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_115_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_115_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_115_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_115_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_115_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_115_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_115_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.591289997,3.392553091/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_115_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_116_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_116_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_116_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_116_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_116_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_116_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_116_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_116_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_116_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_116_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_116_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_116_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_116_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_116_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_116_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_116_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_116_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_116_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_116_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_116_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_116_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_116_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_116_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.630005836,4.187176228/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_116_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_117_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_117_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_117_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_117_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_117_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_117_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_117_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_117_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_117_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_117_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_117_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_117_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_117_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_117_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_117_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_117_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_117_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_117_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_117_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_117_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_117_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_117_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_117_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.88214874,7.591344833/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_117_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_118_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_118_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_118_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_118_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_118_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_118_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_118_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_118_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_118_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_118_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_118_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_118_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_118_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_118_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_118_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_118_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_118_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_118_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_118_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_118_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_118_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_118_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_118_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.32810307,5.131472111/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_118_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_119_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_119_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_119_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_119_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_119_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_119_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_119_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_119_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_119_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_119_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_119_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_119_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_119_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_119_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_119_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_119_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_119_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_119_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_119_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_119_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_119_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_119_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_119_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.75156212,10.80491066/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_119_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_120_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_120_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_120_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_120_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_120_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_120_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_120_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_120_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_120_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_120_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_120_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_120_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_120_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_120_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_120_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_120_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_120_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_120_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_120_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_120_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_120_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_120_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_120_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.54835796,10.41648102/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_120_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_121_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_121_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_121_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_121_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_121_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_121_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_121_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_121_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_121_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_121_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_121_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_121_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_121_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_121_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_121_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_121_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_121_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_121_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_121_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_121_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_121_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_121_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_121_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.588963985,4.742865086/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_121_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_122_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_122_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_122_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_122_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_122_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_122_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_122_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_122_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_122_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_122_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_122_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_122_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_122_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_122_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_122_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_122_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_122_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_122_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_122_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_122_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_122_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_122_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_122_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.859032154,7.997766972/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_122_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_123_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_123_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_123_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_123_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_123_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_123_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_123_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_123_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_123_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_123_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_123_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_123_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_123_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_123_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_123_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_123_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_123_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_123_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_123_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_123_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_123_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_123_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_123_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.148612022,9.16421032/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_123_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_124_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_124_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_124_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_124_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_124_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_124_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_124_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_124_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_124_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_124_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_124_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_124_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_124_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_124_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_124_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_124_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_124_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_124_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_124_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_124_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_124_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_124_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_124_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.413403988,7.423152924/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_124_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_125_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_125_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_125_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_125_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_125_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_125_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_125_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_125_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_125_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_125_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_125_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_125_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_125_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_125_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_125_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_125_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_125_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_125_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_125_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_125_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_125_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_125_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_125_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.354670048,3.898075104/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_125_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_126_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_126_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_126_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_126_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_126_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_126_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_126_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_126_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_126_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_126_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_126_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_126_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_126_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_126_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_126_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_126_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_126_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_126_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_126_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_126_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_126_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_126_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_126_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.652708054,7.964212894/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_126_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_127_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_127_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_127_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_127_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_127_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_127_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_127_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_127_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_127_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_127_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_127_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_127_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_127_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_127_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_127_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_127_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_127_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_127_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_127_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_127_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_127_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_127_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_127_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.152351856,7.368509769/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_127_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_128_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_128_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_128_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_128_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_128_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_128_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_128_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_128_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_128_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_128_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_128_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_128_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_128_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_128_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_128_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_128_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_128_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_128_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_128_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_128_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_128_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_128_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_128_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.113286018,6.785988808/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_128_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_129_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_129_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_129_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_129_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_129_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_129_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_129_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_129_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_129_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_129_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_129_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_129_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_129_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_129_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_129_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_129_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_129_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_129_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_129_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_129_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_129_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_129_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_129_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.482543945,6.94651413/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_129_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_130_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_130_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_130_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_130_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_130_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_130_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_130_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_130_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_130_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_130_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_130_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_130_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_130_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_130_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_130_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_130_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_130_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_130_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_130_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_130_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_130_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_130_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_130_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.472924232,3.163219929/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_130_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_131_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_131_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_131_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_131_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_131_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_131_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_131_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_131_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_131_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_131_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_131_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_131_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_131_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_131_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_131_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_131_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_131_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_131_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_131_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_131_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_131_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_131_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_131_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.558509827,11.10389805/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_131_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_132_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_132_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_132_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_132_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_132_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_132_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_132_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_132_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_132_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_132_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_132_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_132_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_132_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_132_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_132_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_132_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_132_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_132_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_132_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_132_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_132_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_132_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_132_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.191263199,8.146331787/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_132_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_133_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_133_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_133_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_133_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_133_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_133_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_133_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_133_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_133_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_133_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_133_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_133_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_133_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_133_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_133_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_133_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_133_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_133_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_133_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_133_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_133_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_133_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_133_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.530498981,3.389972925/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_133_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_134_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_134_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_134_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_134_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_134_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_134_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_134_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_134_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_134_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_134_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_134_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_134_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_134_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_134_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_134_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_134_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_134_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_134_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_134_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_134_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_134_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_134_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_134_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.143529892,9.802323341/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_134_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_135_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_135_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_135_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_135_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_135_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_135_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_135_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_135_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_135_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_135_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_135_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_135_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_135_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_135_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_135_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_135_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_135_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_135_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_135_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_135_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_135_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_135_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_135_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/13.73873901,5.28966713/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_135_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_136_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_136_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_136_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_136_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_136_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_136_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_136_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_136_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_136_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_136_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_136_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_136_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_136_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_136_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_136_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_136_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_136_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_136_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_136_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_136_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_136_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_136_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_136_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.687263012,6.318595886/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_136_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_137_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_137_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_137_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_137_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_137_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_137_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_137_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_137_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_137_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_137_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_137_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_137_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_137_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_137_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_137_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_137_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_137_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_137_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_137_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_137_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_137_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_137_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_137_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.098491192,6.173060894/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_137_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_138_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_138_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_138_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_138_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_138_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_138_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_138_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_138_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_138_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_138_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_138_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_138_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_138_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_138_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_138_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_138_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_138_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_138_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_138_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_138_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_138_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_138_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_138_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.98354053,10.407938/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_138_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_139_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_139_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_139_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_139_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_139_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_139_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_139_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_139_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_139_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_139_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_139_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_139_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_139_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_139_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_139_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_139_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_139_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_139_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_139_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_139_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_139_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_139_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_139_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.29680157,12.08525276/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_139_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_140_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_140_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_140_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_140_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_140_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_140_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_140_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_140_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_140_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_140_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_140_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_140_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_140_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_140_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_140_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_140_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_140_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_140_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_140_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_140_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_140_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_140_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_140_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.58473492,8.805891991/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_140_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_141_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_141_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_141_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_141_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_141_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_141_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_141_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_141_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_141_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_141_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_141_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_141_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_141_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_141_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_141_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_141_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_141_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_141_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_141_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_141_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_141_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_141_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_141_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/13.22733498,6.516129017/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_141_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_142_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_142_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_142_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_142_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_142_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_142_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_142_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_142_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_142_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_142_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_142_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_142_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_142_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_142_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_142_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_142_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_142_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_142_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_142_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_142_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_142_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_142_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_142_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.487043858,3.921864986/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_142_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_143_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_143_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_143_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_143_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_143_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_143_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_143_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_143_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_143_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_143_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_143_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_143_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_143_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_143_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_143_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_143_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_143_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_143_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_143_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_143_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_143_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_143_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_143_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.36170292,8.526973724/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_143_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_144_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_144_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_144_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_144_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_144_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_144_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_144_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_144_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_144_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_144_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_144_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_144_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_144_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_144_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_144_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_144_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_144_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_144_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_144_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_144_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_144_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_144_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_144_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.757197857,4.895895958/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_144_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_145_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_145_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_145_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_145_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_145_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_145_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_145_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_145_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_145_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_145_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_145_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_145_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_145_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_145_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_145_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_145_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_145_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_145_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_145_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_145_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_145_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_145_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_145_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.07247257,4.073512077/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_145_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_146_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_146_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_146_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_146_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_146_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_146_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_146_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_146_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_146_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_146_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_146_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_146_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_146_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_146_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_146_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_146_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_146_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_146_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_146_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_146_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_146_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_146_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_146_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.812997818,6.951023102/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_146_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_147_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_147_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_147_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_147_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_147_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_147_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_147_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_147_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_147_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_147_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_147_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_147_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_147_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_147_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_147_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_147_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_147_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_147_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_147_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_147_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_147_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_147_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_147_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.329421043,6.035830975/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_147_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_148_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_148_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_148_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_148_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_148_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_148_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_148_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_148_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_148_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_148_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_148_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_148_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_148_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_148_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_148_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_148_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_148_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_148_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_148_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_148_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_148_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_148_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_148_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.700078964,3.497507095/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_148_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_149_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_149_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_149_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_149_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_149_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_149_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_149_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_149_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_149_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_149_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_149_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_149_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_149_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_149_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_149_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_149_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_149_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_149_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_149_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_149_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_149_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_149_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_149_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.537999153,3.289380074/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_149_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_150_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_150_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_150_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_150_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_150_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_150_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_150_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_150_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_150_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_150_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_150_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_150_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_150_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_150_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_150_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_150_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_150_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_150_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_150_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_150_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_150_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_150_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_150_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.84485626,8.810067177/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_150_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_151_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_151_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_151_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_151_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_151_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_151_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_151_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_151_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_151_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_151_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_151_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_151_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_151_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_151_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_151_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_151_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_151_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_151_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_151_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_151_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_151_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_151_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_151_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.810320854,8.808428764/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_151_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_152_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_152_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_152_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_152_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_152_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_152_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_152_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_152_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_152_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_152_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_152_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_152_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_152_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_152_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_152_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_152_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_152_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_152_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_152_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_152_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_152_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_152_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_152_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.528416157,7.374866009/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_152_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_153_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_153_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_153_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_153_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_153_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_153_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_153_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_153_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_153_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_153_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_153_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_153_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_153_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_153_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_153_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_153_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_153_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_153_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_153_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_153_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_153_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_153_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_153_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.697897911,3.184576988/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_153_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_155_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_155_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_155_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_155_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_155_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_155_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_155_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_155_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_155_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_155_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_155_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_155_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_155_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_155_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_155_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_155_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_155_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_155_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_155_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_155_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_155_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_155_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_155_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.717542171,7.471874237/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_155_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_156_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_156_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_156_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_156_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_156_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_156_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_156_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_156_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_156_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_156_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_156_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_156_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_156_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_156_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_156_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_156_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_156_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_156_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_156_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_156_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_156_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_156_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_156_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.22332716,8.173344612/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_156_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_157_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_157_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_157_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_157_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_157_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_157_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_157_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_157_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_157_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_157_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_157_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_157_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_157_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_157_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_157_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_157_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_157_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_157_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_157_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_157_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_157_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_157_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_157_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.711194992,6.039982796/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_157_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_158_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_158_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_158_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_158_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_158_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_158_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_158_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_158_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_158_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_158_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_158_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_158_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_158_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_158_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_158_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_158_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_158_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_158_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_158_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_158_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_158_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_158_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_158_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.378864765,3.823142052/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_158_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_159_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_159_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_159_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_159_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_159_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_159_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_159_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_159_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_159_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_159_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_159_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_159_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_159_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_159_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_159_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_159_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_159_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_159_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_159_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_159_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_159_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_159_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_159_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.656989098,5.117313862/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_159_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_160_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_160_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_160_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_160_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_160_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_160_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_160_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_160_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_160_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_160_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_160_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_160_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_160_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_160_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_160_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_160_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_160_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_160_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_160_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_160_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_160_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_160_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_160_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.537970066,7.260128975/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_160_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_161_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_161_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_161_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_161_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_161_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_161_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_161_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_161_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_161_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_161_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_161_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_161_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_161_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_161_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_161_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_161_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_161_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_161_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_161_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_161_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_161_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_161_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_161_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.22924232,10.01055622/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_161_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_162_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_162_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_162_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_162_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_162_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_162_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_162_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_162_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_162_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_162_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_162_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_162_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_162_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_162_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_162_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_162_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_162_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_162_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_162_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_162_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_162_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_162_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_162_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.16783905,7.252561092/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_162_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_163_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_163_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_163_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_163_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_163_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_163_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_163_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_163_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_163_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_163_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_163_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_163_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_163_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_163_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_163_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_163_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_163_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_163_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_163_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_163_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_163_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_163_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_163_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.39824295,4.623362064/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_163_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_164_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_164_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_164_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_164_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_164_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_164_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_164_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_164_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_164_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_164_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_164_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_164_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_164_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_164_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_164_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_164_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_164_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_164_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_164_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_164_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_164_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_164_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_164_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.445234776,9.004712105/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_164_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_165_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_165_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_165_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_165_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_165_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_165_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_165_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_165_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_165_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_165_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_165_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_165_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_165_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_165_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_165_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_165_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_165_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_165_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_165_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_165_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_165_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_165_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_165_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.81473637,13.08870411/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_165_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_166_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_166_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_166_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_166_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_166_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_166_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_166_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_166_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_166_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_166_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_166_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_166_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_166_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_166_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_166_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_166_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_166_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_166_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_166_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_166_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_166_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_166_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_166_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.061270714,7.443314075/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_166_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_167_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_167_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_167_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_167_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_167_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_167_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_167_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_167_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_167_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_167_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_167_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_167_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_167_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_167_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_167_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_167_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_167_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_167_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_167_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_167_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_167_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_167_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_167_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.804697037,8.752104759/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_167_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_168_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_168_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_168_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_168_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_168_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_168_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_168_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_168_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_168_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_168_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_168_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_168_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_168_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_168_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_168_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_168_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_168_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_168_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_168_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_168_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_168_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_168_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_168_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.936638832,5.651535034/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_168_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_169_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_169_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_169_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_169_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_169_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_169_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_169_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_169_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_169_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_169_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_169_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_169_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_169_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_169_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_169_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_169_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_169_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_169_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_169_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_169_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_169_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_169_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_169_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.27655506,7.974254131/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_169_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_170_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_170_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_170_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_170_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_170_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_170_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_170_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_170_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_170_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_170_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_170_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_170_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_170_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_170_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_170_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_170_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_170_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_170_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_170_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_170_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_170_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_170_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_170_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.636519432,9.087538719/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_170_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_171_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_171_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_171_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_171_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_171_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_171_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_171_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_171_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_171_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_171_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_171_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_171_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_171_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_171_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_171_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_171_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_171_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_171_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_171_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_171_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_171_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_171_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_171_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.565795898,3.375848055/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_171_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_172_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_172_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_172_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_172_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_172_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_172_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_172_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_172_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_172_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_172_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_172_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_172_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_172_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_172_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_172_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_172_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_172_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_172_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_172_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_172_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_172_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_172_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_172_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.601959229,5.417432785/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_172_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_173_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_173_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_173_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_173_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_173_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_173_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_173_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_173_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_173_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_173_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_173_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_173_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_173_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_173_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_173_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_173_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_173_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_173_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_173_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_173_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_173_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_173_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_173_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/13.06809616,5.254032135/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_173_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_174_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_174_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_174_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_174_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_174_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_174_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_174_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_174_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_174_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_174_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_174_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_174_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_174_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_174_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_174_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_174_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_174_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_174_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_174_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_174_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_174_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_174_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_174_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.327319145,5.662665844/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_174_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_175_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_175_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_175_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_175_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_175_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_175_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_175_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_175_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_175_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_175_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_175_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_175_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_175_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_175_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_175_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_175_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_175_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_175_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_175_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_175_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_175_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_175_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_175_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.474935532,4.56117487/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_175_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_176_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_176_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_176_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_176_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_176_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_176_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_176_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_176_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_176_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_176_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_176_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_176_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_176_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_176_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_176_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_176_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_176_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_176_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_176_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_176_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_176_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_176_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_176_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.3674593,7.289390087/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_176_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_177_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_177_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_177_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_177_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_177_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_177_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_177_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_177_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_177_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_177_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_177_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_177_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_177_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_177_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_177_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_177_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_177_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_177_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_177_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_177_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_177_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_177_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_177_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.39803314,10.6047554/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_177_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_178_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_178_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_178_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_178_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_178_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_178_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_178_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_178_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_178_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_178_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_178_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_178_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_178_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_178_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_178_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_178_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_178_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_178_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_178_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_178_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_178_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_178_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_178_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.65052223,9.67316246/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_178_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_179_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_179_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_179_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_179_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_179_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_179_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_179_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_179_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_179_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_179_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_179_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_179_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_179_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_179_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_179_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_179_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_179_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_179_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_179_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_179_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_179_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_179_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_179_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.461547852,3.390604019/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_179_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_180_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_180_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_180_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_180_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_180_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_180_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_180_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_180_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_180_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_180_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_180_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_180_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_180_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_180_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_180_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_180_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_180_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_180_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_180_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_180_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_180_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_180_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_180_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.765317917,12.08246422/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_180_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_181_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_181_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_181_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_181_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_181_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_181_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_181_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_181_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_181_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_181_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_181_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_181_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_181_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_181_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_181_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_181_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_181_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_181_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_181_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_181_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_181_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_181_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_181_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.629644871,8.010708809/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_181_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_182_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_182_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_182_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_182_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_182_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_182_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_182_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_182_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_182_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_182_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_182_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_182_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_182_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_182_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_182_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_182_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_182_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_182_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_182_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_182_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_182_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_182_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_182_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.899356842,4.877271175/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_182_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_183_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_183_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_183_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_183_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_183_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_183_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_183_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_183_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_183_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_183_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_183_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_183_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_183_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_183_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_183_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_183_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_183_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_183_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_183_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_183_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_183_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_183_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_183_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.727149963,8.552559853/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_183_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_184_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_184_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_184_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_184_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_184_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_184_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_184_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_184_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_184_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_184_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_184_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_184_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_184_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_184_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_184_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_184_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_184_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_184_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_184_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_184_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_184_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_184_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_184_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.060276985,7.399261951/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_184_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_185_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_185_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_185_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_185_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_185_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_185_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_185_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_185_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_185_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_185_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_185_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_185_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_185_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_185_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_185_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_185_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_185_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_185_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_185_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_185_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_185_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_185_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_185_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.31974792,7.554294109/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_185_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_186_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_186_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_186_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_186_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_186_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_186_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_186_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_186_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_186_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_186_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_186_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_186_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_186_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_186_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_186_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_186_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_186_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_186_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_186_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_186_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_186_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_186_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_186_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.40764999,10.02238178/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_186_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_187_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_187_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_187_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_187_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_187_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_187_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_187_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_187_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_187_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_187_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_187_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_187_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_187_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_187_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_187_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_187_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_187_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_187_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_187_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_187_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_187_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_187_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_187_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.714297771,9.075204849/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_187_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_188_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_188_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_188_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_188_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_188_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_188_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_188_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_188_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_188_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_188_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_188_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_188_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_188_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_188_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_188_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_188_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_188_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_188_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_188_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_188_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_188_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_188_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_188_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.522333145,5.764907837/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_188_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_189_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_189_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_189_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_189_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_189_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_189_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_189_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_189_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_189_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_189_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_189_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_189_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_189_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_189_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_189_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_189_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_189_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_189_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_189_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_189_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_189_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_189_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_189_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.01898193,8.478021622/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_189_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_190_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_190_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_190_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_190_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_190_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_190_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_190_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_190_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_190_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_190_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_190_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_190_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_190_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_190_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_190_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_190_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_190_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_190_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_190_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_190_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_190_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_190_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_190_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.29010201,10.1828413/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_190_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_191_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_191_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_191_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_191_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_191_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_191_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_191_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_191_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_191_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_191_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_191_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_191_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_191_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_191_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_191_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_191_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_191_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_191_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_191_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_191_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_191_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_191_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_191_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.931538105,9.834429741/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_191_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_192_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_192_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_192_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_192_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_192_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_192_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_192_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_192_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_192_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_192_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_192_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_192_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_192_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_192_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_192_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_192_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_192_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_192_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_192_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_192_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_192_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_192_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_192_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.665987968,7.915869236/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_192_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_193_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_193_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_193_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_193_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_193_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_193_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_193_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_193_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_193_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_193_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_193_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_193_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_193_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_193_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_193_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_193_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_193_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_193_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_193_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_193_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_193_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_193_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_193_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.758094788,5.977875233/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_193_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_194_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_194_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_194_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_194_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_194_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_194_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_194_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_194_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_194_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_194_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_194_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_194_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_194_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_194_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_194_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_194_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_194_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_194_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_194_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_194_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_194_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_194_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_194_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.04371452,8.45899868/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_194_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_195_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_195_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_195_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_195_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_195_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_195_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_195_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_195_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_195_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_195_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_195_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_195_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_195_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_195_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_195_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_195_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_195_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_195_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_195_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_195_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_195_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_195_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_195_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.761046886,9.989088058/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_195_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_196_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_196_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_196_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_196_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_196_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_196_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_196_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_196_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_196_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_196_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_196_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_196_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_196_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_196_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_196_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_196_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_196_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_196_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_196_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_196_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_196_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_196_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_196_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.154344559,4.719408989/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_196_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_197_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_197_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_197_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_197_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_197_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_197_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_197_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_197_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_197_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_197_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_197_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_197_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_197_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_197_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_197_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_197_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_197_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_197_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_197_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_197_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_197_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_197_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_197_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.55603027,5.596879959/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_197_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_198_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_198_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_198_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_198_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_198_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_198_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_198_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_198_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_198_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_198_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_198_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_198_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_198_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_198_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_198_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_198_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_198_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_198_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_198_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_198_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_198_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_198_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_198_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.70410633,6.838977814/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_198_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_199_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_199_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_199_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_199_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_199_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_199_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_199_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_199_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_199_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_199_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_199_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_199_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_199_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_199_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_199_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_199_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_199_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_199_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_199_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_199_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_199_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_199_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_199_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.577926159,2.924614906/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_199_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_200_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_200_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_200_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_200_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_200_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_200_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_200_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_200_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_200_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_200_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_200_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_200_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_200_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_200_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_200_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_200_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_200_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_200_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_200_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_200_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_200_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_200_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_200_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.86594391,10.4403286/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_200_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_201_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_201_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_201_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_201_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_201_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_201_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_201_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_201_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_201_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_201_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_201_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_201_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_201_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_201_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_201_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_201_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_201_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_201_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_201_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_201_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_201_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_201_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_201_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.531827927,12.37496567/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_201_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_202_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_202_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_202_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_202_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_202_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_202_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_202_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_202_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_202_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_202_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_202_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_202_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_202_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_202_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_202_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_202_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_202_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_202_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_202_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_202_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_202_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_202_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_202_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.26909924,11.20515919/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_202_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_203_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_203_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_203_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_203_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_203_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_203_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_203_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_203_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_203_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_203_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_203_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_203_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_203_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_203_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_203_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_203_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_203_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_203_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_203_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_203_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_203_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_203_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_203_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.68156004,4.203927994/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_203_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_204_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_204_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_204_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_204_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_204_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_204_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_204_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_204_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_204_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_204_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_204_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_204_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_204_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_204_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_204_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_204_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_204_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_204_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_204_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_204_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_204_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_204_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_204_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.491930008,5.243403912/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_204_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_205_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_205_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_205_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_205_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_205_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_205_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_205_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_205_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_205_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_205_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_205_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_205_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_205_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_205_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_205_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_205_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_205_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_205_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_205_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_205_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_205_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_205_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_205_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.57679653,10.73617744/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_205_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_206_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_206_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_206_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_206_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_206_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_206_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_206_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_206_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_206_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_206_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_206_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_206_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_206_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_206_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_206_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_206_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_206_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_206_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_206_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_206_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_206_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_206_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_206_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.713816643,11.62837791/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_206_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_207_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_207_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_207_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_207_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_207_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_207_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_207_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_207_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_207_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_207_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_207_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_207_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_207_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_207_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_207_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_207_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_207_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_207_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_207_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_207_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_207_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_207_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_207_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.651693344,9.768994331/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_207_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_208_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_208_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_208_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_208_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_208_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_208_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_208_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_208_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_208_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_208_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_208_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_208_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_208_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_208_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_208_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_208_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_208_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_208_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_208_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_208_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_208_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_208_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_208_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.201541901,7.598516941/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_208_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_209_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_209_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_209_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_209_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_209_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_209_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_209_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_209_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_209_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_209_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_209_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_209_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_209_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_209_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_209_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_209_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_209_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_209_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_209_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_209_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_209_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_209_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_209_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.96806431,9.63647747/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_209_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_210_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_210_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_210_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_210_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_210_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_210_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_210_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_210_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_210_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_210_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_210_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_210_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_210_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_210_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_210_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_210_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_210_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_210_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_210_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_210_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_210_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_210_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_210_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.197908401,12.4887867/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_210_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_211_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_211_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_211_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_211_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_211_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_211_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_211_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_211_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_211_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_211_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_211_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_211_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_211_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_211_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_211_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_211_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_211_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_211_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_211_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_211_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_211_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_211_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_211_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.441854,7.257946014/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_211_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_212_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_212_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_212_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_212_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_212_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_212_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_212_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_212_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_212_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_212_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_212_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_212_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_212_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_212_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_212_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_212_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_212_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_212_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_212_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_212_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_212_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_212_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_212_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.565668106,7.621759892/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_212_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_213_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_213_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_213_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_213_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_213_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_213_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_213_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_213_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_213_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_213_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_213_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_213_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_213_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_213_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_213_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_213_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_213_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_213_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_213_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_213_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_213_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_213_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_213_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.245381355,11.8634758/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_213_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_214_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_214_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_214_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_214_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_214_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_214_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_214_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_214_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_214_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_214_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_214_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_214_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_214_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_214_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_214_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_214_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_214_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_214_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_214_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_214_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_214_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_214_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_214_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.09270382,6.554115772/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_214_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_216_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_216_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_216_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_216_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_216_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_216_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_216_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_216_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_216_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_216_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_216_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_216_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_216_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_216_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_216_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_216_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_216_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_216_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_216_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_216_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_216_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_216_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_216_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.981601715,11.48633003/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_216_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_217_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_217_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_217_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_217_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_217_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_217_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_217_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_217_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_217_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_217_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_217_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_217_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_217_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_217_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_217_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_217_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_217_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_217_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_217_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_217_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_217_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_217_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_217_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.7942276,8.377101898/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_217_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_218_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_218_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_218_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_218_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_218_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_218_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_218_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_218_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_218_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_218_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_218_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_218_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_218_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_218_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_218_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_218_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_218_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_218_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_218_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_218_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_218_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_218_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_218_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.386050224,5.615040779/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_218_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_219_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_219_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_219_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_219_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_219_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_219_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_219_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_219_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_219_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_219_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_219_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_219_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_219_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_219_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_219_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_219_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_219_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_219_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_219_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_219_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_219_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_219_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_219_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.628065109,9.242049217/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_219_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_220_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_220_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_220_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_220_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_220_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_220_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_220_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_220_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_220_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_220_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_220_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_220_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_220_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_220_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_220_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_220_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_220_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_220_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_220_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_220_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_220_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_220_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_220_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.170569897,4.787600994/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_220_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_221_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_221_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_221_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_221_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_221_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_221_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_221_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_221_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_221_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_221_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_221_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_221_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_221_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_221_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_221_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_221_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_221_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_221_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_221_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_221_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_221_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_221_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_221_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.76327419,4.549636841/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_221_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_222_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_222_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_222_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_222_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_222_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_222_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_222_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_222_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_222_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_222_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_222_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_222_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_222_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_222_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_222_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_222_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_222_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_222_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_222_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_222_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_222_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_222_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_222_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.66750431,4.044361115/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_222_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_223_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_223_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_223_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_223_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_223_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_223_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_223_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_223_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_223_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_223_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_223_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_223_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_223_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_223_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_223_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_223_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_223_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_223_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_223_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_223_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_223_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_223_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_223_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.617081165,3.295841932/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_223_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_224_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_224_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_224_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_224_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_224_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_224_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_224_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_224_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_224_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_224_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_224_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_224_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_224_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_224_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_224_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_224_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_224_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_224_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_224_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_224_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_224_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_224_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_224_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.753973007,5.391413212/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_224_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_225_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_225_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_225_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_225_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_225_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_225_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_225_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_225_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_225_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_225_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_225_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_225_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_225_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_225_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_225_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_225_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_225_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_225_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_225_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_225_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_225_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_225_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_225_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.10258007,8.099183083/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_225_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_226_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_226_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_226_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_226_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_226_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_226_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_226_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_226_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_226_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_226_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_226_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_226_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_226_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_226_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_226_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_226_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_226_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_226_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_226_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_226_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_226_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_226_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_226_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.817645073,4.589839935/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_226_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_227_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_227_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_227_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_227_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_227_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_227_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_227_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_227_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_227_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_227_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_227_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_227_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_227_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_227_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_227_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_227_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_227_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_227_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_227_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_227_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_227_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_227_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_227_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.215800285,12.49829388/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_227_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_228_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_228_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_228_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_228_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_228_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_228_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_228_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_228_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_228_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_228_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_228_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_228_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_228_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_228_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_228_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_228_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_228_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_228_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_228_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_228_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_228_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_228_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_228_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.935529709,8.914128304/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_228_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_229_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_229_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_229_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_229_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_229_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_229_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_229_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_229_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_229_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_229_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_229_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_229_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_229_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_229_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_229_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_229_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_229_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_229_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_229_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_229_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_229_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_229_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_229_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.821737766,3.899621964/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_229_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_230_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_230_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_230_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_230_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_230_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_230_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_230_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_230_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_230_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_230_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_230_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_230_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_230_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_230_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_230_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_230_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_230_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_230_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_230_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_230_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_230_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_230_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_230_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/9.024736404,7.422396183/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_230_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_231_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_231_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_231_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_231_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_231_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_231_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_231_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_231_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_231_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_231_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_231_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_231_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_231_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_231_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_231_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_231_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_231_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_231_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_231_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_231_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_231_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_231_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_231_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.011624813,5.818759918/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_231_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_232_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_232_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_232_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_232_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_232_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_232_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_232_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_232_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_232_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_232_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_232_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_232_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_232_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_232_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_232_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_232_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_232_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_232_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_232_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_232_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_232_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_232_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_232_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.548487186,3.215624094/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_232_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_233_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_233_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_233_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_233_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_233_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_233_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_233_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_233_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_233_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_233_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_233_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_233_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_233_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_233_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_233_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_233_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_233_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_233_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_233_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_233_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_233_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_233_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_233_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.223512173,5.186448097/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_233_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_234_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_234_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_234_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_234_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_234_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_234_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_234_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_234_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_234_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_234_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_234_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_234_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_234_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_234_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_234_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_234_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_234_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_234_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_234_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_234_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_234_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_234_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_234_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.899918079,3.10789609/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_234_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_235_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_235_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_235_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_235_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_235_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_235_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_235_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_235_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_235_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_235_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_235_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_235_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_235_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_235_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_235_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_235_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_235_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_235_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_235_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_235_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_235_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_235_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_235_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.06032276,12.77326107/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_235_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_236_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_236_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_236_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_236_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_236_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_236_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_236_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_236_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_236_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_236_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_236_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_236_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_236_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_236_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_236_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_236_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_236_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_236_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_236_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_236_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_236_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_236_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_236_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.809700966,6.682640076/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_236_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_237_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_237_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_237_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_237_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_237_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_237_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_237_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_237_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_237_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_237_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_237_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_237_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_237_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_237_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_237_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_237_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_237_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_237_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_237_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_237_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_237_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_237_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_237_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/5.502464771,7.890522003/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_237_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_238_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_238_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_238_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_238_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_238_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_238_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_238_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_238_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_238_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_238_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_238_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_238_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_238_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_238_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_238_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_238_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_238_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_238_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_238_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_238_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_238_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_238_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_238_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.6340704,11.52378941/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_238_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_239_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_239_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_239_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_239_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_239_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_239_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_239_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_239_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_239_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_239_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_239_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_239_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_239_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_239_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_239_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_239_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_239_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_239_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_239_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_239_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_239_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_239_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_239_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/4.784002781,7.156230927/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_239_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_240_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_240_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_240_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_240_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_240_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_240_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_240_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_240_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_240_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_240_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_240_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_240_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_240_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_240_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_240_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_240_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_240_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_240_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_240_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_240_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_240_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_240_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_240_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.31111002,6.483406067/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_240_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_241_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_241_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_241_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_241_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_241_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_241_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_241_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_241_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_241_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_241_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_241_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_241_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_241_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_241_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_241_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_241_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_241_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_241_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_241_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_241_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_241_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_241_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_241_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/8.505205154,4.544726849/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_241_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_242_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_242_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_242_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_242_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_242_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_242_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_242_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_242_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_242_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_242_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_242_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_242_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_242_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_242_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_242_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_242_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_242_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_242_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_242_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_242_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_242_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_242_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_242_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/11.09393883,11.34800434/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_242_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_243_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_243_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_243_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_243_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_243_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_243_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_243_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_243_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_243_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_243_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_243_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_243_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_243_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_243_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_243_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_243_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_243_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_243_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_243_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_243_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_243_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_243_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_243_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/7.119257927,7.626355171/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_243_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_244_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_244_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_244_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_244_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_244_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_244_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_244_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_244_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_244_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_244_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_244_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_244_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_244_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_244_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_244_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_244_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_244_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_244_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_244_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_244_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_244_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_244_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_244_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.13243675,9.510924339/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_244_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_245_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_245_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_245_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_245_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_245_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_245_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_245_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_245_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_245_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_245_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_245_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_245_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_245_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_245_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_245_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_245_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_245_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_245_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_245_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_245_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_245_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_245_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_245_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/10.98338509,8.059851646/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_245_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_246_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_246_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_246_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_246_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_246_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_246_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_246_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_246_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_246_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_246_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_246_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_246_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_246_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_246_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_246_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_246_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_246_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_246_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_246_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_246_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_246_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_246_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_246_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.705212116,4.270120144/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_246_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_247_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_247_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_247_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_247_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_247_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_247_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_247_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_247_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_247_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_247_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_247_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_247_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_247_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_247_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_247_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_247_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_247_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_247_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_247_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_247_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_247_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_247_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_247_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.75320816,7.243291855/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_247_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_248_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_248_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_248_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_248_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_248_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_248_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_248_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_248_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_248_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_248_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_248_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_248_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_248_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_248_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_248_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_248_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_248_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_248_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_248_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_248_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_248_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_248_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_248_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.706788063,7.391684055/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_248_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_249_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_249_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_249_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_249_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_249_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_249_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_249_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_249_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_249_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_249_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_249_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_249_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_249_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_249_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_249_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_249_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_249_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_249_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_249_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_249_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_249_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_249_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_249_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/12.37225819,11.04129219/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_249_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_250_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_250_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_250_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_250_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_250_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_250_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_250_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_250_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_250_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_250_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_250_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2003-12-01,2003-12-31/?blockSize=1", "title": "id_250_weather_data_2003_12"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-01-01,2004-01-31/?blockSize=1", "title": "id_250_weather_data_2004_1"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-02-01,2004-02-29/?blockSize=1", "title": "id_250_weather_data_2004_2"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-03-01,2004-03-31/?blockSize=1", "title": "id_250_weather_data_2004_3"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-04-01,2004-04-30/?blockSize=1", "title": "id_250_weather_data_2004_4"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-05-01,2004-05-31/?blockSize=1", "title": "id_250_weather_data_2004_5"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-06-01,2004-06-30/?blockSize=1", "title": "id_250_weather_data_2004_6"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-07-01,2004-07-31/?blockSize=1", "title": "id_250_weather_data_2004_7"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-08-01,2004-08-31/?blockSize=1", "title": "id_250_weather_data_2004_8"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-09-01,2004-09-30/?blockSize=1", "title": "id_250_weather_data_2004_9"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-10-01,2004-10-31/?blockSize=1", "title": "id_250_weather_data_2004_10"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-11-01,2004-11-30/?blockSize=1", "title": "id_250_weather_data_2004_11"}, {"api": "GET /v2/weather/locations/6.728114128,3.369570017/observations/2004-12-01,2004-12-31/?blockSize=1", "title": "id_250_weather_data_2004_12"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-01-01,2003-01-31/?blockSize=1", "title": "id_251_weather_data_2003_1"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-02-01,2003-02-28/?blockSize=1", "title": "id_251_weather_data_2003_2"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-03-01,2003-03-31/?blockSize=1", "title": "id_251_weather_data_2003_3"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-04-01,2003-04-30/?blockSize=1", "title": "id_251_weather_data_2003_4"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-05-01,2003-05-31/?blockSize=1", "title": "id_251_weather_data_2003_5"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-06-01,2003-06-30/?blockSize=1", "title": "id_251_weather_data_2003_6"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-07-01,2003-07-31/?blockSize=1", "title": "id_251_weather_data_2003_7"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-08-01,2003-08-31/?blockSize=1", "title": "id_251_weather_data_2003_8"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-09-01,2003-09-30/?blockSize=1", "title": "id_251_weather_data_2003_9"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-10-01,2003-10-31/?blockSize=1", "title": "id_251_weather_data_2003_10"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-11-01,2003-11-30/?blockSize=1", "title": "id_251_weather_data_2003_11"}, {"api": "GET /v2/weather/locations/11.51729393,7.313148975/observations/2003-12-01,2003-12-31/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment