-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvgio.owl.ttl
4596 lines (3057 loc) · 155 KB
/
vgio.owl.ttl
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
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://cui.unige.ch/isi/onto/vgio#> .
@prefix wn: <http://www.wordnet.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix vgi: <http://vgibox.eu/onto#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <http://cui.unige.ch/isi/onto/vgio> .
<http://cui.unige.ch/isi/onto/vgio> rdf:type owl:Ontology ;
dcterms:creator [ schema:name "Gilles Falquet"
] ,
[ schema:name "Claudine Métral"
] ,
[ schema:name "Rob Lemmens"
] ;
dcterms:description """An ontology for the semantic indexing of VGI related documents.
This ontology (still under construction) has been created by
1. manually identifying and extracting key terms from the European Handbook of Crowdsourced Geographic Information <http://vgibox.eu/repository/index.php/European_Handbook_of_Crowdsourced_Geographic_Information>
2. rewriting the terms according to the thesaurus standard (e.g. \"task analysis\" instead of \"analysis of tasks\")
3. creating a hierarchy by grouping terms by their last word
4. manually checking the semantic consistency of the hierarchy and adding a higher (more abstract) level the corresponds to Wordnet concepts"""@en ;
dcterms:title "VGIO: Volunteered Geographic Information Ontology" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
### https://schema.org/name
schema:name rdf:type owl:AnnotationProperty .
#################################################################
# Classes
#################################################################
### http://cui.unige.ch/isi/onto/vgio#a_priori_approach
:a_priori_approach rdf:type owl:Class ;
rdfs:subClassOf :approach ;
rdfs:label "a priori approach" .
### http://cui.unige.ch/isi/onto/vgio#abnormal_and_disastrous_event
:abnormal_and_disastrous_event rdf:type owl:Class ;
rdfs:subClassOf :event ;
rdfs:label "abnormal and disastrous event" .
### http://cui.unige.ch/isi/onto/vgio#about_farmland_habitats_and_species
:about_farmland_habitats_and_species rdf:type owl:Class ;
rdfs:subClassOf :species ;
rdfs:label "about farmland habitats and species" .
### http://cui.unige.ch/isi/onto/vgio#accuracy
:accuracy rdf:type owl:Class ;
rdfs:subClassOf wn:attribute ;
rdfs:label "accuracy" .
### http://cui.unige.ch/isi/onto/vgio#acquisition_procedure
:acquisition_procedure rdf:type owl:Class ;
rdfs:subClassOf :procedure ;
rdfs:label "acquisition procedure" .
### http://cui.unige.ch/isi/onto/vgio#active_contribution
:active_contribution rdf:type owl:Class ;
rdfs:subClassOf :contribution ;
rdfs:label "active contribution" .
### http://cui.unige.ch/isi/onto/vgio#active_sensing
:active_sensing rdf:type owl:Class ;
rdfs:subClassOf :sensing ;
rdfs:label "active sensing" .
### http://cui.unige.ch/isi/onto/vgio#active_surveillance
:active_surveillance rdf:type owl:Class ;
rdfs:subClassOf :surveillance ;
rdfs:label "active surveillance" .
### http://cui.unige.ch/isi/onto/vgio#active_surveillance_data
:active_surveillance_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "active surveillance data" .
### http://cui.unige.ch/isi/onto/vgio#activity_pattern
:activity_pattern rdf:type owl:Class ;
rdfs:subClassOf :pattern ;
rdfs:label "activity pattern" .
### http://cui.unige.ch/isi/onto/vgio#administration
:administration rdf:type owl:Class ;
rdfs:subClassOf :organization ;
rdfs:label "administration" .
### http://cui.unige.ch/isi/onto/vgio#affective_responses_to_environment
:affective_responses_to_environment rdf:type owl:Class ;
rdfs:subClassOf :process ;
rdfs:label "affective responses to environment" .
### http://cui.unige.ch/isi/onto/vgio#agency
:agency rdf:type owl:Class ;
rdfs:subClassOf :organization ;
rdfs:label "agency" .
### http://cui.unige.ch/isi/onto/vgio#aggregated_mobility_pattern
:aggregated_mobility_pattern rdf:type owl:Class ;
rdfs:subClassOf :pattern ;
rdfs:label "aggregated mobility pattern" .
### http://cui.unige.ch/isi/onto/vgio#agricultural_area
:agricultural_area rdf:type owl:Class ;
rdfs:subClassOf :area ;
rdfs:label "agricultural area" .
### http://cui.unige.ch/isi/onto/vgio#air_quality
:air_quality rdf:type owl:Class ;
rdfs:subClassOf :quality ;
rdfs:label "air quality" .
### http://cui.unige.ch/isi/onto/vgio#algorithm
:algorithm rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "algorithm" .
### http://cui.unige.ch/isi/onto/vgio#amateurs_data_production
:amateurs_data_production rdf:type owl:Class ;
rdfs:subClassOf :production ;
rdfs:label "amateurs data production" .
### http://cui.unige.ch/isi/onto/vgio#amazon_web_service
:amazon_web_service rdf:type owl:Class ;
rdfs:subClassOf :service ;
rdfs:label "amazon web service" .
### http://cui.unige.ch/isi/onto/vgio#ambient_geographic_information
:ambient_geographic_information rdf:type owl:Class ;
rdfs:subClassOf :information ;
rdfs:label "ambient geographic information" .
### http://cui.unige.ch/isi/onto/vgio#analysis
:analysis rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "analysis" .
### http://cui.unige.ch/isi/onto/vgio#analysis-relevant_keyword
:analysis-relevant_keyword rdf:type owl:Class ;
rdfs:subClassOf :metadata ;
rdfs:label "analysis-relevant keyword" .
### http://cui.unige.ch/isi/onto/vgio#analytics
:analytics rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "analytics" .
### http://cui.unige.ch/isi/onto/vgio#and_mobile_clients_for_service
:and_mobile_clients_for_service rdf:type owl:Class ;
rdfs:subClassOf :service ;
rdfs:label "and mobile clients for service" .
### http://cui.unige.ch/isi/onto/vgio#android_application
:android_application rdf:type owl:Class ;
rdfs:subClassOf :application ;
rdfs:label "android application" .
### http://cui.unige.ch/isi/onto/vgio#android_mobile_application
:android_mobile_application rdf:type owl:Class ;
rdfs:subClassOf :application ;
rdfs:label "android mobile application" .
### http://cui.unige.ch/isi/onto/vgio#api
:api rdf:type owl:Class ;
rdfs:subClassOf :software ;
rdfs:label "api" .
### http://cui.unige.ch/isi/onto/vgio#app_user
:app_user rdf:type owl:Class ;
rdfs:subClassOf :user ;
rdfs:label "app user" .
### http://cui.unige.ch/isi/onto/vgio#app_user_validation
:app_user_validation rdf:type owl:Class ;
rdfs:subClassOf :validation ;
rdfs:label "app user validation" .
### http://cui.unige.ch/isi/onto/vgio#application
:application rdf:type owl:Class ;
rdfs:subClassOf :software ;
rdfs:label "application" .
### http://cui.unige.ch/isi/onto/vgio#application_programming_interface
:application_programming_interface rdf:type owl:Class ;
rdfs:subClassOf :interface ;
rdfs:label "application programming interface" .
### http://cui.unige.ch/isi/onto/vgio#approach
:approach rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "approach" .
### http://cui.unige.ch/isi/onto/vgio#appropriate_data
:appropriate_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "appropriate data" .
### http://cui.unige.ch/isi/onto/vgio#apriori_algorithm
:apriori_algorithm rdf:type owl:Class ;
rdfs:subClassOf :algorithm ;
rdfs:label "apriori algorithm" .
### http://cui.unige.ch/isi/onto/vgio#area
:area rdf:type owl:Class ;
rdfs:subClassOf :geographic_object_ ;
rdfs:label "area" .
### http://cui.unige.ch/isi/onto/vgio#areal_feature
:areal_feature rdf:type owl:Class ;
rdfs:subClassOf :feature ;
rdfs:label "areal feature" .
### http://cui.unige.ch/isi/onto/vgio#assessing_the_representativenes
:assessing_the_representativenes rdf:type owl:Class ;
rdfs:subClassOf :representativenes ;
rdfs:label "assessing the representativenes" .
### http://cui.unige.ch/isi/onto/vgio#assessment
:assessment rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "assessment" .
### http://cui.unige.ch/isi/onto/vgio#attribute_accuracy
:attribute_accuracy rdf:type owl:Class ;
rdfs:subClassOf :accuracy ;
rdfs:label "attribute accuracy" .
### http://cui.unige.ch/isi/onto/vgio#attribute_data
:attribute_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "attribute data" .
### http://cui.unige.ch/isi/onto/vgio#authoritative_data
:authoritative_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "authoritative data" .
### http://cui.unige.ch/isi/onto/vgio#authoritative_data_source
:authoritative_data_source rdf:type owl:Class ;
rdfs:subClassOf :source ;
rdfs:label "authoritative data source" .
### http://cui.unige.ch/isi/onto/vgio#authoritative_geographic_information
:authoritative_geographic_information rdf:type owl:Class ;
rdfs:subClassOf :information ;
rdfs:label "authoritative geographic information" .
### http://cui.unige.ch/isi/onto/vgio#authority
:authority rdf:type owl:Class ;
rdfs:label "authority" .
### http://cui.unige.ch/isi/onto/vgio#automatic_filter
:automatic_filter rdf:type owl:Class ;
rdfs:subClassOf :filter ;
rdfs:label "automatic filter" .
### http://cui.unige.ch/isi/onto/vgio#automation
:automation rdf:type owl:Class ;
rdfs:label "automation" .
### http://cui.unige.ch/isi/onto/vgio#barrier_for_participation
:barrier_for_participation rdf:type owl:Class ;
rdfs:subClassOf :participation ;
rdfs:label "barrier for participation" .
### http://cui.unige.ch/isi/onto/vgio#bayesian_approach
:bayesian_approach rdf:type owl:Class ;
rdfs:subClassOf :approach ;
rdfs:label "bayesian approach" .
### http://cui.unige.ch/isi/onto/vgio#behavioural_knowledge
:behavioural_knowledge rdf:type owl:Class ;
rdfs:subClassOf :knowledge ;
rdfs:label "behavioural knowledge" .
### http://cui.unige.ch/isi/onto/vgio#big_data
:big_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "big data" .
### http://cui.unige.ch/isi/onto/vgio#big_data_paradigm
:big_data_paradigm rdf:type owl:Class ;
rdfs:subClassOf :paradigm ;
rdfs:label "big data paradigm" .
### http://cui.unige.ch/isi/onto/vgio#biological_monitoring_or_surveillance_program
:biological_monitoring_or_surveillance_program rdf:type owl:Class ;
rdfs:subClassOf :program ;
rdfs:label "biological monitoring or surveillance program" .
### http://cui.unige.ch/isi/onto/vgio#biological_observation
:biological_observation rdf:type owl:Class ;
rdfs:subClassOf :observation ;
rdfs:label "biological observation" .
### http://cui.unige.ch/isi/onto/vgio#birds-eye_image
:birds-eye_image rdf:type owl:Class ;
rdfs:subClassOf :image ;
rdfs:label "birds-eye image" .
### http://cui.unige.ch/isi/onto/vgio#bottom-up_approach
:bottom-up_approach rdf:type owl:Class ;
rdfs:subClassOf :approach ;
rdfs:label "bottom-up approach" .
### http://cui.unige.ch/isi/onto/vgio#breeding_bird_survey
:breeding_bird_survey rdf:type owl:Class ;
rdfs:subClassOf :survey ;
rdfs:label "breeding bird survey" .
### http://cui.unige.ch/isi/onto/vgio#building_footprint
:building_footprint rdf:type owl:Class ;
rdfs:subClassOf :footprint ;
rdfs:label "building footprint" .
### http://cui.unige.ch/isi/onto/vgio#bus_station
:bus_station rdf:type owl:Class ;
rdfs:subClassOf :station ;
rdfs:label "bus station" .
### http://cui.unige.ch/isi/onto/vgio#butterfly_monitoring
:butterfly_monitoring rdf:type owl:Class ;
rdfs:subClassOf :monitoring ;
rdfs:label "butterfly monitoring" .
### http://cui.unige.ch/isi/onto/vgio#cadastral_model
:cadastral_model rdf:type owl:Class ;
rdfs:subClassOf :model ;
rdfs:label "cadastral model" .
### http://cui.unige.ch/isi/onto/vgio#cadastral_procedure
:cadastral_procedure rdf:type owl:Class ;
rdfs:subClassOf :procedure ;
rdfs:label "cadastral procedure" .
### http://cui.unige.ch/isi/onto/vgio#cadastral_survey
:cadastral_survey rdf:type owl:Class ;
rdfs:subClassOf :survey ;
rdfs:label "cadastral survey" .
### http://cui.unige.ch/isi/onto/vgio#cadastral_system
:cadastral_system rdf:type owl:Class ;
rdfs:subClassOf :system ;
rdfs:label "cadastral system" .
### http://cui.unige.ch/isi/onto/vgio#captured_data
:captured_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "captured data" .
### http://cui.unige.ch/isi/onto/vgio#car-based_navigation
:car-based_navigation rdf:type owl:Class ;
rdfs:subClassOf :navigation ;
rdfs:label "car-based navigation" .
### http://cui.unige.ch/isi/onto/vgio#cartographic_project
:cartographic_project rdf:type owl:Class ;
rdfs:subClassOf :project ;
rdfs:label "cartographic project" .
### http://cui.unige.ch/isi/onto/vgio#census_work
:census_work rdf:type owl:Class ;
rdfs:subClassOf :work ;
rdfs:label "census work" .
### http://cui.unige.ch/isi/onto/vgio#characteristic
:characteristic rdf:type owl:Class ;
rdfs:subClassOf wn:attribute ;
rdfs:label "characteristic" .
### http://cui.unige.ch/isi/onto/vgio#checking_scenario
:checking_scenario rdf:type owl:Class ;
rdfs:subClassOf :scenario ;
rdfs:label "checking scenario" .
### http://cui.unige.ch/isi/onto/vgio#citizen_as_sensor
:citizen_as_sensor rdf:type owl:Class ;
rdfs:subClassOf :sensor ,
wn:person ;
rdfs:label "citizen as sensor" .
### http://cui.unige.ch/isi/onto/vgio#citizen_observation
:citizen_observation rdf:type owl:Class ;
rdfs:subClassOf :observation ;
rdfs:label "citizen observation" .
### http://cui.unige.ch/isi/onto/vgio#citizen_participation
:citizen_participation rdf:type owl:Class ;
rdfs:subClassOf :participation ;
rdfs:label "citizen participation" .
### http://cui.unige.ch/isi/onto/vgio#citizen_science
:citizen_science rdf:type owl:Class ;
rdfs:subClassOf :science ;
rdfs:label "citizen science" .
### http://cui.unige.ch/isi/onto/vgio#citizen_science_data
:citizen_science_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "citizen science data" .
### http://cui.unige.ch/isi/onto/vgio#citizen_science_project
:citizen_science_project rdf:type owl:Class ;
rdfs:subClassOf :project ;
rdfs:label "citizen science project" .
### http://cui.unige.ch/isi/onto/vgio#citizens_as_sensor
:citizens_as_sensor rdf:type owl:Class ;
rdfs:subClassOf :sensor ,
wn:person ;
rdfs:label "citizens as sensor" .
### http://cui.unige.ch/isi/onto/vgio#citizens_science
:citizens_science rdf:type owl:Class ;
rdfs:subClassOf :science ;
rdfs:label "citizens science" .
### http://cui.unige.ch/isi/onto/vgio#citizens_sensor
:citizens_sensor rdf:type owl:Class ;
rdfs:subClassOf :sensor ,
wn:person ;
rdfs:label "citizens sensor" .
### http://cui.unige.ch/isi/onto/vgio#city
:city rdf:type owl:Class ;
rdfs:subClassOf :geographic_object_ ;
rdfs:label "city" .
### http://cui.unige.ch/isi/onto/vgio#city_structure
:city_structure rdf:type owl:Class ;
rdfs:subClassOf :structure ;
rdfs:label "city structure" .
### http://cui.unige.ch/isi/onto/vgio#classication_processs
:classication_processs rdf:type owl:Class ;
rdfs:subClassOf :process ;
rdfs:label "classication processs" .
### http://cui.unige.ch/isi/onto/vgio#classication_quality
:classication_quality rdf:type owl:Class ;
rdfs:subClassOf :quality ;
rdfs:label "classication quality" .
### http://cui.unige.ch/isi/onto/vgio#classification_method
:classification_method rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "classification method" .
### http://cui.unige.ch/isi/onto/vgio#classifier
:classifier rdf:type owl:Class ;
rdfs:subClassOf :software ;
rdfs:label "classifier" .
### http://cui.unige.ch/isi/onto/vgio#classifying_information
:classifying_information rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "classifying information" .
### http://cui.unige.ch/isi/onto/vgio#cloud_computing
:cloud_computing rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "cloud computing" .
### http://cui.unige.ch/isi/onto/vgio#clustering
:clustering rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "clustering" .
### http://cui.unige.ch/isi/onto/vgio#clustering_algorithm
:clustering_algorithm rdf:type owl:Class ;
rdfs:subClassOf :algorithm ;
rdfs:label "clustering algorithm" .
### http://cui.unige.ch/isi/onto/vgio#co-occurrence_and_data_mining_method
:co-occurrence_and_data_mining_method rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "co-occurrence and data mining method" .
### http://cui.unige.ch/isi/onto/vgio#collaboration_platform
:collaboration_platform rdf:type owl:Class ;
rdfs:subClassOf :platform ;
rdfs:label "collaboration platform" .
### http://cui.unige.ch/isi/onto/vgio#collaborative_cloud_computing
:collaborative_cloud_computing rdf:type owl:Class ;
rdfs:subClassOf :cloud_computing ;
rdfs:label "collaborative cloud computing" .
### http://cui.unige.ch/isi/onto/vgio#collaborative_human-computer_analytical_activity
:collaborative_human-computer_analytical_activity rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "collaborative human-computer analytical activity" .
### http://cui.unige.ch/isi/onto/vgio#collaborative_mapping
:collaborative_mapping rdf:type owl:Class ;
rdfs:subClassOf :mapping ;
rdfs:label "collaborative mapping" .
### http://cui.unige.ch/isi/onto/vgio#collaborative_mapping_project
:collaborative_mapping_project rdf:type owl:Class ;
rdfs:subClassOf :project ;
rdfs:label "collaborative mapping project" .
### http://cui.unige.ch/isi/onto/vgio#collective_intelligence
:collective_intelligence rdf:type owl:Class ;
rdfs:subClassOf :intelligence ;
rdfs:label "collective intelligence" .
### http://cui.unige.ch/isi/onto/vgio#collective_tagging_approach
:collective_tagging_approach rdf:type owl:Class ;
rdfs:subClassOf :approach ;
rdfs:label "collective tagging approach" .
### http://cui.unige.ch/isi/onto/vgio#commercial_and_vgi_dataset
:commercial_and_vgi_dataset rdf:type owl:Class ;
rdfs:subClassOf :dataset ;
rdfs:label "commercial and vgi dataset" .
### http://cui.unige.ch/isi/onto/vgio#commercial_vgi_project
:commercial_vgi_project rdf:type owl:Class ;
rdfs:subClassOf :project ;
rdfs:label "commercial vgi project" .
### http://cui.unige.ch/isi/onto/vgio#community
:community rdf:type owl:Class ;
rdfs:label "community" .
### http://cui.unige.ch/isi/onto/vgio#community-based_monitoring
:community-based_monitoring rdf:type owl:Class ;
rdfs:subClassOf :monitoring ;
rdfs:label "community-based monitoring" .
### http://cui.unige.ch/isi/onto/vgio#community_mapping
:community_mapping rdf:type owl:Class ;
rdfs:subClassOf :mapping ;
rdfs:label "community mapping" .
### http://cui.unige.ch/isi/onto/vgio#computational_analysis
:computational_analysis rdf:type owl:Class ;
rdfs:subClassOf :analysis ;
rdfs:label "computational analysis" .
### http://cui.unige.ch/isi/onto/vgio#computational_social_science
:computational_social_science rdf:type owl:Class ;
rdfs:subClassOf :science ;
rdfs:label "computational social science" .
### http://cui.unige.ch/isi/onto/vgio#computationally_supported_technique
:computationally_supported_technique rdf:type owl:Class ;
rdfs:subClassOf :technique ;
rdfs:label "computationally supported technique" .
### http://cui.unige.ch/isi/onto/vgio#computer_science
:computer_science rdf:type owl:Class ;
rdfs:subClassOf :science ;
rdfs:label "computer science" .
### http://cui.unige.ch/isi/onto/vgio#consistency
:consistency rdf:type owl:Class ;
rdfs:subClassOf wn:attribute ;
rdfs:label "consistency" .
### http://cui.unige.ch/isi/onto/vgio#content
:content rdf:type owl:Class ;
rdfs:subClassOf :data_collection ;
rdfs:label "content" .
### http://cui.unige.ch/isi/onto/vgio#context
:context rdf:type owl:Class ;
rdfs:subClassOf wn:attribute ;
rdfs:label "context" .
### http://cui.unige.ch/isi/onto/vgio#contextual_information
:contextual_information rdf:type owl:Class ;
rdfs:subClassOf :information ;
rdfs:label "contextual information" .
### http://cui.unige.ch/isi/onto/vgio#contextual_social_media_data_collection
:contextual_social_media_data_collection rdf:type owl:Class ;
rdfs:subClassOf :data_collection ;
rdfs:label "contextual social media data collection" .
### http://cui.unige.ch/isi/onto/vgio#contributed_data
:contributed_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "contributed data" .
### http://cui.unige.ch/isi/onto/vgio#contributing_scenario
:contributing_scenario rdf:type owl:Class ;
rdfs:subClassOf :scenario ;
rdfs:label "contributing scenario" .
### http://cui.unige.ch/isi/onto/vgio#contribution
:contribution rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "contribution" .
### http://cui.unige.ch/isi/onto/vgio#contributor
:contributor rdf:type owl:Class ;
rdfs:subClassOf wn:person ;
rdfs:label "contributor" .
### http://cui.unige.ch/isi/onto/vgio#contributors_heterogeneity
:contributors_heterogeneity rdf:type owl:Class ;
rdfs:subClassOf :heterogeneity ;
rdfs:label "contributors heterogeneity" .
### http://cui.unige.ch/isi/onto/vgio#control
:control rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "control" .
### http://cui.unige.ch/isi/onto/vgio#conventional_small_data
:conventional_small_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "conventional small data" .
### http://cui.unige.ch/isi/onto/vgio#convolutional_neural_network
:convolutional_neural_network rdf:type owl:Class ;
rdfs:subClassOf :machine_learning ;
rdfs:label "convolutional neural network" .
### http://cui.unige.ch/isi/onto/vgio#coordinate
:coordinate rdf:type owl:Class ;
rdfs:subClassOf :geographic_object_ ;
rdfs:label "coordinate" .
### http://cui.unige.ch/isi/onto/vgio#corine_nomenclature_for_land_use
:corine_nomenclature_for_land_use rdf:type owl:Class ;
rdfs:subClassOf :use ;
rdfs:label "corine nomenclature for land use" .
### http://cui.unige.ch/isi/onto/vgio#cover
:cover rdf:type owl:Class ;
rdfs:subClassOf :geographic_object_ ;
rdfs:label "cover" .
### http://cui.unige.ch/isi/onto/vgio#coverage_area
:coverage_area rdf:type owl:Class ;
rdfs:subClassOf :area ;
rdfs:label "coverage area" .
### http://cui.unige.ch/isi/onto/vgio#crises_management
:crises_management rdf:type owl:Class ;
rdfs:subClassOf :management ;
rdfs:label "crises management" .
### http://cui.unige.ch/isi/onto/vgio#crisis_management
:crisis_management rdf:type owl:Class ;
rdfs:subClassOf :management ;
rdfs:label "crisis management" .
### http://cui.unige.ch/isi/onto/vgio#crowd-sensing_activity
:crowd-sensing_activity rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "crowd-sensing activity" .
### http://cui.unige.ch/isi/onto/vgio#crowd-sensing_based_application
:crowd-sensing_based_application rdf:type owl:Class ;
rdfs:subClassOf :application ;
rdfs:label "crowd-sensing based application" .
### http://cui.unige.ch/isi/onto/vgio#crowd-sourced_web_data
:crowd-sourced_web_data rdf:type owl:Class ;
rdfs:subClassOf :crowdsourced_data ;
rdfs:label "crowd-sourced web data" .
### http://cui.unige.ch/isi/onto/vgio#crowd_sentiment_measurement
:crowd_sentiment_measurement rdf:type owl:Class ;
rdfs:subClassOf :measurement ;
rdfs:label "crowd sentiment measurement" .
### http://cui.unige.ch/isi/onto/vgio#crowdsensed_data
:crowdsensed_data rdf:type owl:Class ;
owl:equivalentClass :crowdsourced_data ;
rdfs:subClassOf :data ;
rdfs:label "crowdsensed data" .
### http://cui.unige.ch/isi/onto/vgio#crowdsoucerd_geographic_information
:crowdsoucerd_geographic_information rdf:type owl:Class ;
rdfs:subClassOf :crowdsourced_information ,
:geographic_information ;
rdfs:label "crowdsoucerd geographic information" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourced_application
:crowdsourced_application rdf:type owl:Class ;
rdfs:subClassOf :application ;
rdfs:label "crowdsourced application" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourced_data
:crowdsourced_data rdf:type owl:Class ;
rdfs:subClassOf :data ;
rdfs:label "crowdsourced data" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourced_geographic_information
:crowdsourced_geographic_information rdf:type owl:Class ;
rdfs:subClassOf :crowdsourced_information ,
:geographic_information ;
rdfs:label "crowdsourced geographic information" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourced_geographic_information_phenomena
:crowdsourced_geographic_information_phenomena rdf:type owl:Class ;
rdfs:subClassOf :phenomena ;
rdfs:label "crowdsourced geographic information phenomena" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourced_information
:crowdsourced_information rdf:type owl:Class ;
rdfs:subClassOf :information ;
rdfs:label "crowdsourced information" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourced_paradigm
:crowdsourced_paradigm rdf:type owl:Class ;
rdfs:subClassOf :paradigm ;
rdfs:label "crowdsourced paradigm" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourcing
:crowdsourcing rdf:type owl:Class ;
rdfs:subClassOf :method ;
rdfs:label "crowdsourcing" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourcing_cadastral_model
:crowdsourcing_cadastral_model rdf:type owl:Class ;
rdfs:subClassOf :model ;
rdfs:label "crowdsourcing cadastral model" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourcing_data
:crowdsourcing_data rdf:type owl:Class ;
rdfs:subClassOf wn:activity ;
rdfs:label "crowdsourcing data" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourcing_geographic_information
:crowdsourcing_geographic_information rdf:type owl:Class ;
rdfs:subClassOf :crowdsourced_information ,
:geographic_information ;
rdfs:label "crowdsourcing geographic information" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourcing_technique
:crowdsourcing_technique rdf:type owl:Class ;
rdfs:subClassOf :technique ;
rdfs:label "crowdsourcing technique" .
### http://cui.unige.ch/isi/onto/vgio#crowdsourcing_tools_and_service
:crowdsourcing_tools_and_service rdf:type owl:Class ;
rdfs:subClassOf :service ;
rdfs:label "crowdsourcing tools and service" .
### http://cui.unige.ch/isi/onto/vgio#cultural_innovation
:cultural_innovation rdf:type owl:Class ;
rdfs:subClassOf :innovation ;
rdfs:label "cultural innovation" .
### http://cui.unige.ch/isi/onto/vgio#current_location
:current_location rdf:type owl:Class ;
rdfs:subClassOf :location ;
rdfs:label "current location" .
### http://cui.unige.ch/isi/onto/vgio#danger_map
:danger_map rdf:type owl:Class ;
rdfs:subClassOf :map ;
rdfs:label "danger map" .
### http://cui.unige.ch/isi/onto/vgio#data
:data rdf:type owl:Class ;
rdfs:label "data" .
### http://cui.unige.ch/isi/onto/vgio#data-intensive_computational_social_science
:data-intensive_computational_social_science rdf:type owl:Class ;
rdfs:subClassOf :science ;
rdfs:label "data-intensive computational social science" .
### http://cui.unige.ch/isi/onto/vgio#data_analysis
:data_analysis rdf:type owl:Class ;
rdfs:subClassOf :analysis ;
rdfs:label "data analysis" .
### http://cui.unige.ch/isi/onto/vgio#data_collection
:data_collection rdf:type owl:Class ;
rdfs:subClassOf :information_representation_object_ ;
rdfs:label "data collection" .
### http://cui.unige.ch/isi/onto/vgio#data_collection_and_sharing
:data_collection_and_sharing rdf:type owl:Class ;
rdfs:subClassOf :sharing ;
rdfs:label "data collection and sharing" .
### http://cui.unige.ch/isi/onto/vgio#data_management
:data_management rdf:type owl:Class ;
rdfs:subClassOf :management ;
rdfs:label "data management" .
### http://cui.unige.ch/isi/onto/vgio#data_mining_algorithm
:data_mining_algorithm rdf:type owl:Class ;
rdfs:subClassOf :algorithm ;
rdfs:label "data mining algorithm" .
### http://cui.unige.ch/isi/onto/vgio#data_processing
:data_processing rdf:type owl:Class ;
rdfs:subClassOf :processing ;
rdfs:label "data processing" .
### http://cui.unige.ch/isi/onto/vgio#data_quality
:data_quality rdf:type owl:Class ;
rdfs:subClassOf :quality ;
rdfs:label "data quality" .
### http://cui.unige.ch/isi/onto/vgio#data_representativenes
:data_representativenes rdf:type owl:Class ;
rdfs:subClassOf :representativenes ;
rdfs:label "data representativenes" .
### http://cui.unige.ch/isi/onto/vgio#data_sharing
:data_sharing rdf:type owl:Class ;
rdfs:subClassOf :sharing ;
rdfs:label "data sharing" .
### http://cui.unige.ch/isi/onto/vgio#data_source
:data_source rdf:type owl:Class ;
rdfs:subClassOf :source ;
rdfs:label "data source" .