forked from RDFLib/pyLODE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplacenames.html
1056 lines (1053 loc) · 44.3 KB
/
placenames.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Place Names Profile</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="pylode">made by <a href="http://github.com/rdflib/pyLODE">pyLODE</a></div>
<h1>Place Names Profile</h1>
<section id="metadata">
<h2 style="display:none;">Metadata</h2>
<dl>
<dt>IRI</dt>
<dd><code>http://linked.data.gov.au/def/placenames</code></dd>
<dt>Publisher(s)</dt>
<dd>
<a href="http://catalogue.linked.data.gov.au/org/ga">Geoscience Australia</a><br/>
</dd>
<dt>Creator(s)</dt>
<dd>
<a href="http://orcid.org/0000-0002-8742-7730">Nicholas Car</a> (<a href="mailto:[email protected]">[email protected]</a>) of <a href="http://catalogue.linked.data.gov.au/def/csiro">CSIRO</a><br/>
</dd>
<dt>Contributors(s)</dt>
<dd>
Irina Bastrakova<br/>
Armin Haller<br/>
</dd>
<dt>Created</dt>
<dd>2018-08-02</dd>
<dt>Modified</dt>
<dd>2019-06-01</dd>
<dt>Version Information</dt>
<dd>2</dd>
<dt>Rights</dt>
<dd>(c) Commonwealth of Australia (Geoscience Australia) 2019</dd>
<dt>Ontology Source</dt>
<dd><a href="placenames.ttl">RDF (turtle)</a></dd>
</dl>
<h2>Description</h2>
<div id="description">
<p>This is an ontology that profiles several other ontologies. It describes Place Names that are used in the Place Names Gazetteer of Australia. Place Names are names given to natural and artificial geospatial features, such as administrative areas, political regions, mountain ranges, rivers, bays etc. Place Names are assigned and managed by multiple Jurisdictions around Australia and may have varying status: official, historical etc. This ontology provides a meta model to bring Place Name data together in one Semantic Web data collection.</p>
</div>
</section>
<section id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#datatypeproperties">Datatype Properties</a></li>
<li><a href="#annotationproperties">Annotation Properties</a></li>
<li><a href="#namespaces">Namespaces</a></li>
</ol>
</section>
<section id="overview">
<h2>Overview</h2>
<div class="figure">
<div style="width:500px; height:500px; background-color: black;"> </div>
<div class="caption"><strong>Figure 1:</strong> Ontology overview</div>
</div>
</section>
<section id="classes">
<h2>Classes <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#asgsfeature">ASGS Feature</a></li>
<li><a href="#address">Address</a></li>
<li><a href="#agent">Agent</a></li>
<li><a href="#concept">Concept</a></li>
<li><a href="#contractedcatchment">ContractedCatchment</a></li>
<li><a href="#feature">Feature</a></li>
<li><a href="#gazetteer">Gazetteer</a></li>
<li><a href="#geometry">Geometry</a></li>
<li><a href="#identifier1">Identifier</a></li>
<li><a href="#jurisdiction">Jurisdiction</a></li>
<li><a href="#organization">Organization</a></li>
<li><a href="#place">Place</a></li>
<li><a href="#placename">Place Name</a></li>
<li><a href="#placenameformality">Place Name Formality</a></li>
<li><a href="#placetype">Place Type</a></li>
<li><a href="#pointofinterest">Point of Interest</a></li>
<li><a href="#region">Region</a></li>
<li><a href="#register1">Register</a></li>
<li><a href="#registereditem">Registered Item</a></li>
<li><a href="#registrystatus">Registry Status</a></li>
<li><a href="#stateorterritory">State or Territory</a></li>
<li><a href="#temporalentity">Temporal Entity</a></li>
<li><a href="#string">string</a></li>
</ul>
<div class="entity class" id="asgsfeature">
<h3>ASGS Feature<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/asgs#Feature</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The ASGS Ontology's Feature Class
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="stateorterritory">
<h3>State or Territory<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/asgs#StateOrTerritory</code></td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#jurisdiction">http://linked.data.gov.au/def/placenames/Jurisdiction</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="address">
<h3>Address<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/gnaf#Address</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The GNAF Ontology's Address Class
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="contractedcatchment">
<h3>ContractedCatchment<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/ContractedCatchment</code></td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="gazetteer">
<h3>Gazetteer<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/Gazetteer</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A Gazetteer is a Register of Place Names created by a Jurisdiction
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://purl.org/linked-data/registry#Register">reg:Register</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="http://purl.org/linked-data/registry#containedItemClass">reg:containedItemClass</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">value</span> <a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="jurisdiction">
<h3>Jurisdiction<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/Jurisdiction</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A Jurisdiction is an Organisation that has authority to make choices within its allocated domain.
In the context of the Place Names Profile, Jurisdictions may select Place Names for Features within their allocated area - Australian state, local government area etc.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="https://schema.org/Organization">schema:Organization</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="http://linked.data.gov.au/def/asgs#StateOrTerritory">asgs:StateOrTerritory</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#wasnamedby">http://linked.data.gov.au/def/placenames/wasNamedBy</a> <sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasplacenamingauthority">http://linked.data.gov.au/def/placenames/hasPlaceNamingAuthority</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="place">
<h3>Place<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/Place</code></td>
</tr>
<tr>
<th>Description</th>
<td>
An identifiable geographic Place as defined by the Composite Gazetteer of Australia.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#register">http://linked.data.gov.au/def/placenames/register</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#gazetteer">http://linked.data.gov.au/def/placenames/Gazetteer</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#hasfeatureclassification">http://linked.data.gov.au/def/placenames/hasFeatureClassification</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="#placetype">http://linked.data.gov.au/def/placenames/PlaceType</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#pointofinterest">http://linked.data.gov.au/def/placenames/PointOfInterest</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#region">http://linked.data.gov.au/def/placenames/Region</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasfeatureclassification">http://linked.data.gov.au/def/placenames/hasFeatureClassification</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="placename">
<h3>Place Name<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/PlaceName</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The name of a place, assigned by an official naming authority in the Place Names Gazeteer of Australia.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://purl.org/linked-data/registry#RegisteredItem">reg:RegisteredItem</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#pronunciation">http://linked.data.gov.au/def/placenames/hasPronunciation</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#register">http://linked.data.gov.au/def/placenames/register</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#gazetteer">http://linked.data.gov.au/def/placenames/Gazetteer</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="https://www.w3.org/ns/adms#identifier">adms:identifier</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="https://www.w3.org/ns/adms#Identifier">adms:Identifier</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#wasnamedby">http://linked.data.gov.au/def/placenames/wasNamedBy</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#jurisdiction">http://linked.data.gov.au/def/placenames/Jurisdiction</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="http://purl.org/linked-data/registry#status">reg:status</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="http://purl.org/linked-data/registry#Status">reg:Status</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasplacenameformality">http://linked.data.gov.au/def/placenames/hasPlaceNameFormality</a> <sup class="sup-op" title="object property">op</sup><br/>
<a href="#pronunciation">http://linked.data.gov.au/def/placenames/hasPronunciation</a> <sup class="sup-op" title="object property">op</sup><br/>
<a href="#wasnamedby">http://linked.data.gov.au/def/placenames/wasNamedBy</a> <sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasplacenamingauthority">http://linked.data.gov.au/def/placenames/hasPlaceNamingAuthority</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="placenameformality">
<h3>Place Name Formality<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/PlaceNameFormality</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The formality of a Place Name: is it official, historical, colloquilal one?
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasplacenameformality">http://linked.data.gov.au/def/placenames/hasPlaceNameFormality</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="placetype">
<h3>Place Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/PlaceType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The Place Type classification as of the ICSM Permanent Committee on Place Names classification scheme.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasfeatureclassification">http://linked.data.gov.au/def/placenames/hasFeatureClassification</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="pointofinterest">
<h3>Point of Interest<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/PointOfInterest</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A specific point Location that someone may find useful or interesting.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#place">http://linked.data.gov.au/def/placenames/Place</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#wasnamedby">http://linked.data.gov.au/def/placenames/wasNamedBy</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="http://www.w3.org/ns/prov#Agent">prov:Agent</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="region">
<h3>Region<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/Region</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A Region is an area of land that has common features.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#place">http://linked.data.gov.au/def/placenames/Place</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="register1">
<h3>Register<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/linked-data/registry#Register</code></td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#gazetteer">http://linked.data.gov.au/def/placenames/Gazetteer</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="registereditem">
<h3>Registered Item<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/linked-data/registry#RegisteredItem</code></td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="registrystatus">
<h3>Registry Status<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/linked-data/registry#Status</code></td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="http://purl.org/linked-data/registry#status">reg:status</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="feature">
<h3>Feature<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.opengis.net/ont/geosparql#Feature</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The GeoSPARQL Ontology's Feature Class
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasplacename">http://linked.data.gov.au/def/placenames/hasPlaceName</a> <sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="http://linked.data.gov.au/def/gnaf#Address">gnaf:Address</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#contractedcatchment">http://linked.data.gov.au/def/placenames/ContractedCatchment</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="http://linked.data.gov.au/def/asgs#Feature">asgs:Feature</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#place">http://linked.data.gov.au/def/placenames/Place</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasplacename">http://linked.data.gov.au/def/placenames/hasPlaceName</a> <sup class="sup-op" title="object property">op</sup><br/>
<a href="http://www.opengis.net/ont/geosparql#hasGeometry">geo:hasGeometry</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="geometry">
<h3>Geometry<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.opengis.net/ont/geosparql#Geometry</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The GeoSPARQL Ontology's Geometry Class
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#hasGeometry">geo:hasGeometry</a> <sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="string">
<h3>string<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2001/XMLSchema#string</code></td>
</tr>
</table>
</div>
<div class="entity class" id="concept">
<h3>Concept<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2004/02/skos/core#Concept</code></td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="http://purl.org/linked-data/registry#Status">reg:Status</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#placenameformality">http://linked.data.gov.au/def/placenames/PlaceNameFormality</a> <sup class="sup-c" title="class">c</sup><br/>
<a href="#placetype">http://linked.data.gov.au/def/placenames/PlaceType</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="temporalentity">
<h3>Temporal Entity<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2006/time#TemporalEntity</code></td>
</tr>
</table>
</div>
<div class="entity class" id="agent">
<h3>Agent<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/ns/prov#Agent</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The Provenance Ontology's Agent Class
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="https://schema.org/Organization">schema:Organization</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="organization">
<h3>Organization<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://schema.org/Organization</code></td>
</tr>
<tr>
<th>Description</th>
<td>
Schema.org's Organization Class
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/prov#Agent">prov:Agent</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#jurisdiction">http://linked.data.gov.au/def/placenames/Jurisdiction</a> <sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="identifier1">
<h3>Identifier<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://www.w3.org/ns/adms#Identifier</code></td>
</tr>
</table>
</div>
</section>
<section id="objectproperties">
<h2>Object Properties <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#hasfeatureclassification">has feature classification</a></li>
<li><a href="#hasgeometry">hasGeometry</a></li>
<li><a href="#hasplacename">has place name</a></li>
<li><a href="#hasplacenameformality">has place name formality</a></li>
<li><a href="#hasplacenamingauthority">has place naming authority</a></li>
<li><a href="#pronunciation">pronunciation</a></li>
<li><a href="#placenameof">place name of</a></li>
<li><a href="#register">register</a></li>
<li><a href="#wasnamedby">was named by</a></li>
<li><a href="#containeditemclass">containedItemClass</a></li>
<li><a href="#hasstatus">has status</a></li>
<li><a href="#hasgeometry1">has geometry</a></li>
<li><a href="#notation">notation</a></li>
<li><a href="#hastime">has time</a></li>
<li><a href="#theme">theme</a></li>
<li><a href="#wasattributedto">wasAttributedTo</a></li>
<li><a href="#identifier1">identifier</a></li>
</ul>
<div class="entity property" id="hasfeatureclassification">
<h3>has feature classification<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/hasFeatureClassification</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A relation between a Feature and a classification of its real world phenomena.
</td>
</tr>
<tr>
<th>Super-properties</th>
<td>
<a href="http://www.w3.org/ns/dcat#theme">dcat:theme</a> <sup class="sup-op" title="object property">op</sup>
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="#place">http://linked.data.gov.au/def/placenames/Place</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="#placetype">http://linked.data.gov.au/def/placenames/PlaceType</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="hasgeometry">
<h3>hasGeometry<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/hasGeometry</code></td>
</tr>
</table>
</div>
<div class="entity property" id="hasplacename">
<h3>has place name<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/hasPlaceName</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The Feature has a place name (label) assigned to it
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
All PlaceName objects names indicated by hasPlaceName should have the role of the name indicated with a Name Type
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup>
<a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="hasplacenameformality">
<h3>has place name formality<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/hasPlaceNameFormality</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The formality of a Place Name
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
Values for this property must be selected from the Place Name Formality vocabulary
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="#placenameformality">http://linked.data.gov.au/def/placenames/PlaceNameFormality</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="hasplacenamingauthority">
<h3>has place naming authority<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/hasPlaceNamingAuthority</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A relation definining the Naming Authority responsible for the naming of a Place.
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="#jurisdiction">http://linked.data.gov.au/def/placenames/Jurisdiction</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="pronunciation">
<h3>pronunciation<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/hasPronunciation</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The pronunciation of a Place Name, indicated by means of a phonetic alphabet string
</td>
</tr>
<tr>
<th>Super-properties</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#notation">skos:notation</a> <sup class="sup-op" title="object property">op</sup>
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="placenameof">
<h3>place name of<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/placeNameOf</code></td>
</tr>
</table>
</div>
<div class="entity property" id="register">
<h3>register<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/register</code></td>
</tr>
</table>
</div>
<div class="entity property" id="wasnamedby">
<h3>was named by<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/placenames/wasNamedBy</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A relation that states the Jurisdiction that named a Feature
</td>
</tr>
<tr>
<th>Super-properties</th>
<td>
<a href="http://www.w3.org/ns/prov#wasAttributedTo">prov:wasAttributedTo</a> <sup class="sup-op" title="object property">op</sup>
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="#placename">http://linked.data.gov.au/def/placenames/PlaceName</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="#jurisdiction">http://linked.data.gov.au/def/placenames/Jurisdiction</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="containeditemclass">
<h3>containedItemClass<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/linked-data/registry#containedItemClass</code></td>
</tr>
</table>
</div>
<div class="entity property" id="hasstatus">
<h3>has status<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/linked-data/registry#status</code></td>
</tr>
<tr>
<th>Usage Note</th>
<td>
This property is the generic Registry Ontology status property indicating the status of a RegisteredItem in a Registry but in this ontology it is used to indicate only the status of a Place Name in a Gazetteer.
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="http://purl.org/linked-data/registry#Status">reg:Status</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="hasgeometry1">
<h3>has geometry<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.opengis.net/ont/geosparql#hasGeometry</code></td>
</tr>
<tr>
<th>Description</th>
<td>
GeoSPARQL Ontology's hasGeometry property
</td>
</tr>
<tr>
<th>Domain(s)</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
<tr>
<th>Range(s)</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Geometry">geo:Geometry</a> <sup class="sup-c" title="class">c</sup>
</td>
</tr>
</table>
</div>
<div class="entity property" id="notation">
<h3>notation<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2004/02/skos/core#notation</code></td>
</tr>
</table>
</div>
<div class="entity property" id="hastime">
<h3>has time<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2006/time#hastime</code></td>
</tr>
</table>
</div>
<div class="entity property" id="theme">
<h3>theme<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/ns/dcat#theme</code></td>
</tr>
</table>
</div>
<div class="entity property" id="wasattributedto">
<h3>wasAttributedTo<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/ns/prov#wasAttributedTo</code></td>
</tr>
</table>
</div>
<div class="entity property" id="identifier1">
<h3>identifier<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://www.w3.org/ns/adms#identifier</code></td>
</tr>
</table>
</div>
</section>
<section id="datatypeproperties">
<h2>Datatype Properties <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#string">string</a></li>
<li><a href="#identifier">identifier</a></li>
</ul>
<div class="entity property" id="string">
<h3>string<sup title="datatype property" class="sup-dp">dp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2001/XMLSchema#string</code></td>
</tr>
</table>
</div>
<div class="entity property" id="identifier">
<h3>identifier<sup title="datatype property" class="sup-dp">dp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://schema.org/identifier</code></td>
</tr>
</table>
</div>
</section>
<section id="annotationproperties">
<h2>Annotation Properties <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#scopenote">scopeNote</a></li>
<li><a href="#name">name</a></li>
</ul>
<div class="entity property" id="scopenote">
<h3>scopeNote<sup title="annotation property" class="sup-ap">ap</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2004/02/skos/core#scopeNote</code></td>
</tr>
</table>
</div>
<div class="entity property" id="name">
<h3>name<sup title="annotation property" class="sup-ap">ap</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://schema.org/name</code></td>
</tr>
</table>
</div>
</section>
<section id="namespaces">
<h2>Namespaces <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>