-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather_prediction_poi.nt
880 lines (880 loc) · 133 KB
/
weather_prediction_poi.nt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#observation_time> "04:00" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#cloud_cover_total> "50"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#relative_humidity> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#sea_water_temperature> "981"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <http://www.dummy.de/#total_snow_depth> "94"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:global_radiation_last_hour> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Al Bayda Governorate" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Muḩāfaz̧at aḑ Ḑāli‘" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Saipan Municipality" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at Ma’rib" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/04%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#observation_time> "03:00" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#cloud_cover_total> "37"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#relative_humidity> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#sea_water_temperature> "980"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <http://www.dummy.de/#total_snow_depth> "93"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:global_radiation_last_hour> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Al Bayda Governorate" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Muḩāfaz̧at ‘Amrān" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Saipan Municipality" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at Ma’rib" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/03%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "5"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#observation_time> "02:00" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#cloud_cover_total> "37"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#relative_humidity> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#sea_water_temperature> "979"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <http://www.dummy.de/#total_snow_depth> "93"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:global_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Al Bayda Governorate" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Muḩāfaz̧at aḑ Ḑāli‘" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at Ma’rib" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/02%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#observation_time> "01:00" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#cloud_cover_total> "25"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#relative_humidity> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#sea_water_temperature> "979"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <http://www.dummy.de/#total_snow_depth> "93"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:global_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Al Bayda Governorate" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Penama Province" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Tinian Municipality" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at Ma’rib" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/01%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#observation_time> "00:00" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#cloud_cover_total> "25"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#relative_humidity> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#sea_water_temperature> "978"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <http://www.dummy.de/#total_snow_depth> "93"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:global_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Al Bayda Governorate" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "22"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Tinian Municipality" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at Ma’rib" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:precipitation_last_12_hours> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/23.10.18/00%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#observation_time> "23:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#cloud_cover_total> "25"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#relative_humidity> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#sea_water_temperature> "978"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <http://www.dummy.de/#total_snow_depth> "92"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:global_radiation_last_hour> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Al Bayda Governorate" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Muḩāfaz̧at Ḩajjah" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at aḑ Ḑāli‘" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/23%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#observation_time> "22:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#cloud_cover_total> "12"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#pressure_reduced_to_mean_sea_level> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#relative_humidity> "977"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <http://www.dummy.de/#sea_water_temperature> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:global_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:horizontal_visibility> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "20"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "19"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Jemo Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Muḩāfaz̧at aḑ Ḑāli‘" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/22%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#observation_time> "21:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#cloud_cover_total> "50"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#dry_bulb_temperature_at_2_meter_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#pressure_reduced_to_mean_sea_level> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#relative_humidity> "977"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <http://www.dummy.de/#sea_water_temperature> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:global_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:horizontal_visibility> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "20"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "18"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tinian Municipality" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Muḩāfaz̧at Ma’rib" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:past_weather_2> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/21%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#observation_time> "20:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#cloud_cover_total> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#pressure_reduced_to_mean_sea_level> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#relative_humidity> "977"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <http://www.dummy.de/#sea_water_temperature> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:global_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:horizontal_visibility> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "15"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "17"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Western Cape" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/20%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#observation_time> "19:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#cloud_cover_total> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#dry_bulb_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#pressure_reduced_to_mean_sea_level> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#relative_humidity> "976"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <http://www.dummy.de/#sea_water_temperature> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:global_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:horizontal_visibility> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "10"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "18"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tinian Municipality" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Western Cape" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/19%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "92"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#observation_time> "18:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#cloud_cover_total> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#sea_water_temperature> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#total_snow_depth> "975"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#total_time_of_sunshine_during_last_hour> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <http://www.dummy.de/#total_time_of_sunshine_past_day> "92"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:global_radiation_last_hour> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "600"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "43"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "14"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:past_weather_2> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/18%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#observation_time> "17:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#relative_humidity> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#sea_water_temperature> "975"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <http://www.dummy.de/#total_snow_depth> "93"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:global_radiation_last_hour> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Muḩāfaz̧at Laḩij" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at aḑ Ḑāli‘" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/17%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#observation_time> "16:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#dry_bulb_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#pressure_reduced_to_mean_sea_level> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#relative_humidity> "974"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <http://www.dummy.de/#sea_water_temperature> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:global_radiation_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:horizontal_visibility> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "31"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Muḩāfaz̧at Ḩajjah" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/16%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "94"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#observation_time> "15:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#cloud_cover_total> "100"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#relative_humidity> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#sea_water_temperature> "974"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <http://www.dummy.de/#total_snow_depth> "95"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:global_radiation_last_hour> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "200"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "3" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tỉnh Tây Ninh" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Lae Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Muḩāfaz̧at Ta‘izz" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/15%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#observation_time> "14:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#cloud_cover_total> "100"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#relative_humidity> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#sea_water_temperature> "973"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <http://www.dummy.de/#total_snow_depth> "93"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:global_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "100"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "4" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Changwat Phayao" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Gouvernorat de Gabès" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/14%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "5"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#observation_time> "13:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#relative_humidity> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <http://www.dummy.de/#sea_water_temperature> "973"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:global_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Thành Phố Hà Nội" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Gouvernorat de Gabès" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/13%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#observation_time> "12:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#present_weather> "1" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#sea_water_temperature> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#total_snow_depth> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#total_time_of_sunshine_during_last_hour> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <http://www.dummy.de/#total_time_of_sunshine_past_day> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:global_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "61"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Gouvernorat de Tunis" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:precipitation_last_12_hours> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/12%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "972"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#observation_time> "11:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#relative_humidity> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#sea_water_temperature> "971"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <http://www.dummy.de/#total_snow_depth> "90"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:global_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "200"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Changwat Suphan Buri" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kırşehir" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/11%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#observation_time> "10:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#relative_humidity> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#sea_water_temperature> "971"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <http://www.dummy.de/#total_snow_depth> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:global_radiation_last_hour> "5"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Sanma Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Gia Lai" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kırşehir" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/10%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#observation_time> "09:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#cloud_cover_total> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#relative_humidity> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <http://www.dummy.de/#sea_water_temperature> "971"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:global_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Gia Lai" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kırşehir" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/09%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#observation_time> "08:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#cloud_cover_total> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#relative_humidity> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#sea_water_temperature> "970"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <http://www.dummy.de/#total_snow_depth> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:global_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tỉnh Hòa Bình" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kırşehir" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/08%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#observation_time> "07:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#cloud_cover_total> "87"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#relative_humidity> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#sea_water_temperature> "970"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <http://www.dummy.de/#total_snow_depth> "89"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:global_radiation_last_hour> "7"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tỉnh Phú Yên" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kırşehir" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/07%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#observation_time> "06:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#cloud_cover_total> "75"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#present_weather> "7" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#total_snow_depth> "18"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#total_time_of_sunshine_during_last_hour> "969"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <http://www.dummy.de/#total_time_of_sunshine_past_day> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:global_radiation_last_hour> "5"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "200"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "5"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "65"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "40"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:past_weather_2> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "8"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:precipitation_last_12_hours> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/06%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#observation_time> "05:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#cloud_cover_total> "100"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#relative_humidity> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#sea_water_temperature> "969"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <http://www.dummy.de/#total_snow_depth> "88"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:global_radiation_last_hour> "9"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tỉnh Phú Yên" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kwajalein Atoll" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Tỉnh Đồng Nai" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/05%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.dummy.de/#Observation> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#observation_station_id> "1028"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#observation_time> "04:00" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#cloud_cover_total> "100"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#dew_point_temperature_at_2_meter_above_ground> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#diffuse_solar_radiation_last_hour> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#evaporation_evapotranspiration_last_24_hours> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#relative_humidity> "4"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#sea_water_temperature> "969"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <http://www.dummy.de/#total_snow_depth> "91"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:global_radiation_last_hour> "6"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:global_radiation_past_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:height_of_base_of_lowest_cloud_above_station> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:horizontal_visibility> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_of_10_minutes_mean_of_wind_speed_for_previous_day> "300"^^<http://www.w3.org/2001/XMLSchema#integer> .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_of_temperature_for_previous_day> "Harare Province" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_as_10_minutes_mean_during_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_during_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_for_previous_day> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:maximum_wind_speed_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:mean_wind_direction_during_last_10+min_at_10_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:mean_wind_speed_during+last_10_min_at_10_meters_above_ground> "Tỉnh Quảng Bình" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:minimum_of_temperature_at_5_cm_above_ground_for_previous_day> "Kili Island" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:minimum_of_temperature_for_previous_day> "Tỉnh Đồng Nai" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_2_meters_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:minimum_temperature_last_12_hours_5_cm_above_ground> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:past_weather_1> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:past_weather_2> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_24_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_3_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_6_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:precipitation_amount_last_hour> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:precipitation_last_12_hours> "---" .
<https://portal.limbo-project.org/dataset/weather/1028/22.10.18/04%3A00> <urn:ruleProperty:temperature_at_5_cm_above_ground> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .