forked from RDFLib/pyLODE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasgs.html
2761 lines (2721 loc) · 128 KB
/
asgs.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>
<head>
<title>ASGS Ontology</title>
<style>
#pylode {
position: fixed;
top: 130px;
left: -80px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
#pylode #p {
color: #329545;
}
#pylode #y {
color: #f9cb33;
}
#pylode #version {
font-size: 1.0em;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dl {
/*border: 1px solid navy;*/
/*padding:5px;*/
}
dt {
font-weight: bold;
padding: 0;
}
dd {
margin-bottom: 10px;
padding-top: 7px;
}
#metadata ul,
#classes ul {
list-style-type: none;
}
#metadata ul li,
#classes ul li {
margin-left: -40px;
}
ul.hlist {
list-style-type: none;
border: 1px solid navy;
padding:5px;
background-color: #F4FFFF;
}
ul.hierarchy {
border: 1px solid navy;
padding: 5px 25px 5px 25px;
background-color: #F4FFFF;
}
ul.hlist li {
display: inline;
margin-right: 10px;
}
.entity {
border: 1px solid navy;
margin:5px 0 5px 0;
padding: 5px;
}
.entity th {
width: 150px;
vertical-align: top;
}
.entity th,
.entity td {
padding-bottom: 20px;
}
.entity table th {
text-align: left;
}
section#overview img {
max-width: 1000px;
}
h1, h2, h3, h4, h5, h6 {
text-align: left
}
h1, h2, h3 {
color: #005A9C; background: white
}
h1 {
font: 170% sans-serif;
line-height: 110%;
}
h2 {
font: 140% sans-serif;
margin-top:40px;
}
h3 {
font: 120% sans-serif;
margin-top: 20px;
padding-bottom: 5px;
border-bottom: 1px solid navy;
}
h4 { font: bold 100% sans-serif }
h5 { font: italic 100% sans-serif }
h6 { font: small-caps 100% sans-serif }
body {
padding: 2em 70px 2em 70px;
margin: 0;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: left;
}
section {
max-width: 1500px;
}
.figure {
margin-bottom: 20px;
}
:link { color: #00C; background: transparent }
:visited { color: #609; background: transparent }
a:active { color: #C00; background: transparent }
.sup-c,
.sup-op,
.sup-fp,
.sup-dp,
.sup-ap,
.sup-p,
.sup-ni,
.sup-con,
.sup-col {
cursor:help;
}
.sup-c {
color:orange;
}
.sup-op {
color:navy;
}
.sup-fp {
color:lightskyblue;
}
.sup-dp {
color:green;
}
.sup-ap {
color:darkred;
}
.sup-p {
color:black;
}
.sup-ni {
color:brown;
}
.sup-con {
color:orange;
}
.sup-col {
color:darkred;
}
sup {
margin-left: -3px;
}
code {
font-size: large;
color: darkred;
}
/* less prominent links for properties */
.proplink {
color: #336;
text-decoration: none;
}
#toc {
position: fixed;
top: 0;
right: 0;
z-index: 2;
height: 100%;
overflow-y: auto;
padding: 10px;
border: solid 1px navy;
font-size: small;
width: 180px;
}
#toc h3 {
margin-top: 5px;
}
#toc ul {
list-style: none;
padding-left: 0;
}
#toc .first > li {
margin-top: 5px;
}
#toc .second,
#toc .third {
padding-left: 10px;
}
#content {
width: calc(100% - 150px);
}
.hover_property {
cursor: help;
text-decoration: none;
border-bottom: dashed 1px;
}
.setclass {
list-style-type: none;
}
code{
word-wrap: break-word;
}
table {
table-layout: fixed;
width: 100%;
}
td {
word-wrap: break-word;
}
</style>
<link href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABhklEQVQ4jbWPzStEURjG3yQLirlGKUnKFO45Z+SjmXvnnmthQcpCoVhYmD/AwmJiI3OvZuZc2U3UlKU0/gAslMw9JgvhHxAr2fko7r0jHSsl+TgbTz2Lt5731/MASEiJW9ONml2QyX6rsGalmnT74v8BDf12hxJfpV8d1uwNKUBYszabdFv84L8B9X0rESVmmUup2fme0cVhJWaZHw4NWL1SewEAfDe6H3Dy6Ll456WEJsRZS630MwCAOI20ei5OBpxse5zcBZw8eS4uPpfIuDiCainIg9umBCU0GZzgLZ9Hn31OgoATL+CkLDGB5H1OKj4nFd/FBxUXJ0UZNb4edw/6nLyJXaj5FeCVyPLNIVmYK8TG1IwWb16L1gEACAFV90ftoT8bdOX0EeyY99gxBXZMgRz6qGb1KantAACI0UvE6F5XJqEjpsdURouI0Vt5gGOUkUNnPu7ObGIIMfNaGqDmjDRi9FZldF1lRgYzeqUyeoiY4ag5Iy3RgOYRM8+/M2bG8efsO4hGrpmJseyMAAAAAElFTkSuQmCC" rel="icon" sizes="16x16" type="image/png">
<link href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAC40lEQVRYhe2UT0hUQRzHp6Iss1B3VZKIDbbdfW9mnoi4f3zzjkJQeOgS0SEIb1EWBGGlLLu460zQPQM1unUIIjA6rfpm6ZAhHjoIRVQUFUlEbG+euTsdXG1d3VL3bVD4g+9h+L35fT/8fvN7ADgY9aHY5fpIvK82HO9ysu66wxWOzbkjcekKx0a2ALYA/n2AGi3a6ArFezcidziecQygNhhrcUficjP6PwBqtGijKxy/thnVBePHywYoDsFhl53GV8SEcsTx4usCMLUewTVpc23BNvEzm6Neyf1+KcG2vwqwUjgrOJq2JmHftwmkVBRGTvncFodnbI7vChO/FRznCmHsNM7aHM9Yk7Df5iqsLMw9sMNOK2g+jS4IEz0UJv4iuJZb2RltWnB4UZqH6ioGAgAAGe5vtiZhtzDx7OoRadLmeM7m6IRjhnLMW2Vx1bA5GhAmnhIcz6/xNj4Ujsky8UspwfayjDPjsF2Y6L7N8Vzx/BfP+KPg6LbgSqd8DnfJW2CnbaLhfH5ephpqygJYvQU4Z3P82TLRsDDhUTnmrSq+Y3N0Mg+Xldy/zwEAnLMWZ3pHpNExmfLs/t0dOdVcbT0JeKxUwFP2VljjqiE47Jp53LTXNxhsUZjerTByXWX6VZWRs/4bIQ2ACv+UAomgDzLCISNZxAxZKMhIDjLy1JfsaK+I+eGBUBNk5E2x8RogX/PdcDZUqieWTSh5D6nOVKqfhoycUmlHFFIyu5RXqf7AcQDISCpv/tqbMBqK883RtmpISRoxQyJKPgGn3wNk5NEigDFa6hslqV/Kj+FdBQD0bshIDlKSLlVcoWQo36UhR80BAMB73lulMn0EMpJTqD6qJiOt3mho/8GbkT2BZNgDB/V+RI0fkOrT3kRIVQbaDizJm2hdNbINBxwk5xAj3yEjuV9rZ1iIkgxixkLBA83mz8uCjLwoGwAx0vOnFSy5mtR4VTaAQvVORMnwZgSpzkrV/QmdE2tKe46+MQAAAABJRU5ErkJggg==" rel="icon" sizes="32x32" type="image/png">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<script id="schema.org" type="application/ld+json">
[
{
"@id": "http://linked.data.gov.au/org/abs",
"https://schema.org/name": [
{
"@value": "Australian Bureau of Statistics"
}
],
"https://schema.org/url": [
{
"@id": "https://www.abs.gov.au"
}
]
},
{
"@id": "https://orcid.org/0000-0002-8742-7730",
"https://schema.org/affiliation": [
{
"@id": "https://surroundaustralia.com"
}
],
"https://schema.org/email": [
{
"@id": "mailto:[email protected]"
}
],
"https://schema.org/name": [
{
"@value": "Nicholas J. Car"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/contributor": [
{
"@id": "https://orcid.org/0000-0002-8742-7730"
}
],
"https://schema.org/copyrightNotice": [
{
"@value": "Copyright 2018 Australian Bureau of Statistics."
}
],
"https://schema.org/creator": [
{
"@id": "https://orcid.org/0000-0002-3884-3420"
},
{
"@id": "https://orcid.org/0000-0002-4305-6085"
}
],
"https://schema.org/dateCreated": [
{
"@value": "2018-11-23"
}
],
"https://schema.org/dateModified": [
{
"@value": "2020-02-03"
}
],
"https://schema.org/description": [
{
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML",
"@value": "<p><a href='https://www.abs.gov.au/websitedbs/D3310114.nsf/home/Australian+Statistical+Geography+Standard+(ASGS)'>Australian Statistical Geography Standard (ASGS)</a> ABS Structures and non-ABS structures</p>\n<p>Ontology for the Australian Statistical Geography Standard (ASGS), a framework of statistical areas used by the Australian Bureau of Statistics (ABS) and other organisations to enable the publication of statistics that are comparable and spatially integrated. This ontology contains the definitions for the ABS Structures which are areas that the ABS designs specifically for outputting statistics.</p>\n<ul>\n <li>structures: Mesh Block, Statistical Areas (Level 1 to Level 4), Greater Capital City Statistical Areas, State or Territory, Country classes,</li>\n <li>Indigenous structures: Indigenous location, Indigenous area, , Indigenous region classes</li>\n <li>Urban structures: Urban Centre and Locality, Section of State Range, Section of State, and Significant Urban Area classes</li>\n</ul>\n<p>and for the Non ABS Structures which are not defined or maintained by the ABS but represent administrative areas for which the ABS is committed to providing a range of statistics. The classes defined here corresponds to ABS approximations of spatial areas or regions which are defined elsewhere</p>\n<ul>\n <li>Local Government Areas (LGAs)</li>\n <li>Postal Areas (POAs)</li>\n <li>State Suburbs (SSCs)</li>\n <li>Commonwealth Electoral Divisions (CEDs)</li>\n <li>State Electoral Divisions (SEDs)</li>\n <li>Australian Drainage Divisions (ADDs)</li>\n <li>Natural Resource Management Regions (NRMRs)</li>\n <li>Tourism Regions (TRs)</li>\n</ul>\n<p>The ASGS uses Mesh Blocks as a common building block for all structures. Mesh Blocks are small enough that they can accurately approximate the changing administrative areas maintained by other organisations, without changing themselves.</p>\n<p>The publication of the ASGS ontology is part of the Australian Bureau of Statistics contribution to a joint effort to publish authoritative, interconnected spatial products (Location Index project).</p>\n<p>The ASGS Ontology is packaged in multiple graphs:</p>\n<ul>\n\t<li>http://linked.data.gov.au/def/asgs (this graph) contains the core classes for ASGS statistical units, and a small number of properties relating to their identity, classification, and containment hierarchy</li>\n <li>http://linked.data.gov.au/def/asgs-cat contains the meshblock classification scheme</li>\n <li>http://linked.data.gov.au/def/asgs-id contains specialised string types for identifiers and labels</li>\n <li>http://linked.data.gov.au/def/asgs-path contains association classes and properties relating to paths between instances of the core classes</li>\n <li>http://linked.data.gov.au/def/asgs-isof (deprecated) contains specialized predicates for containment relationships - this functionality is provided by the generic 'within' and 'contains' relations</li>\n <li>http://linked.data.gov.au/def/asgs-code (deprecated) contains specialised annotation properties for identifiers and labels - this functionality has been superseded by a set of data-types to be used in conjunction with more generic properties</li>\n <li>http://linked.data.gov.au/def/asgs-prop (deprecated) contains specialised ASGS properties for relationships, classifiers, identifiers and labels - this functionality has been superseded by use of types from standardized RDF vocabularies</li>\n</u>"
}
],
"https://schema.org/name": [
{
"@value": "ASGS Ontology"
}
],
"https://schema.org/publisher": [
{
"@id": "http://linked.data.gov.au/org/abs"
}
]
},
{
"@id": "https://orcid.org/0000-0002-3884-3420",
"https://schema.org/affiliation": [
{
"@id": "http://linked.data.gov.au/org/csiro"
}
],
"https://schema.org/email": [
{
"@id": "mailto:[email protected]"
}
],
"https://schema.org/name": [
{
"@value": "Simon J.D. Cox"
}
]
},
{
"@id": "https://orcid.org/0000-0002-4305-6085",
"https://schema.org/affiliation": [
{
"@id": "http://linked.data.gov.au/org/abs"
}
],
"https://schema.org/identifier": [
{
"@id": "https://orcid.org/0000-0002-4305-6085"
}
],
"https://schema.org/name": [
{
"@value": "Laurent Lefort"
}
]
}
]
</script>
</head>
<body>
<div id="content">
<div class="section" id="metadata">
<h1>ASGS Ontology</h1>
<h2>Metadata</h2>
<dl>
<div>
<dt>
<strong>IRI</strong>
</dt>
<dd>
<code>http://linked.data.gov.au/def/asgs</code>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/title" title="A name given to the resource. Defined in DCMI Metadata Terms">Title</a>
</dt>
<dd><p>ASGS Ontology</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/publisher" title="An entity responsible for making the resource available. Defined in DCMI Metadata Terms">Publisher</a>
</dt>
<dd>
<a href="http://linked.data.gov.au/org/abs">ns2:abs</a>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/creator" title="An entity responsible for making the resource. Defined in DCMI Metadata Terms">Creator</a>
</dt>
<dd>
<ul>
<li>
<a href="https://orcid.org/0000-0002-3884-3420">ns3:0000-0002-3884-3420</a>
</li>
<li>
<a href="https://orcid.org/0000-0002-4305-6085">ns3:0000-0002-4305-6085</a>
</li>
</ul>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/contributor" title="An entity responsible for making contributions to the resource. Defined in DCMI Metadata Terms">Contributor</a>
</dt>
<dd>
<a href="https://orcid.org/0000-0002-8742-7730">ns3:0000-0002-8742-7730</a>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/created" title="Date of creation of the resource. Defined in DCMI Metadata Terms">Date Created</a>
</dt>
<dd><p>2018-11-23</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/modified" title="Date on which the resource was changed. Defined in DCMI Metadata Terms">Date Modified</a>
</dt>
<dd><p>2020-02-03</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/rights" title="Information about rights held in and over the resource. Defined in DCMI Metadata Terms">Rights</a>
</dt>
<dd><p>Copyright 2018 Australian Bureau of Statistics.</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/source" title="A related resource from which the described resource is derived. Defined in DCMI Metadata Terms">Source</a>
</dt>
<dd>
<a href="https://www.abs.gov.au/websitedbs/D3310114.nsf/home/Australian+Statistical+Geography+Standard+(ASGS)">ns4:ASGS)</a>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</dt>
<dd><p><a href='https://www.abs.gov.au/websitedbs/D3310114.nsf/home/Australian+Statistical+Geography+Standard+(ASGS)'>Australian Statistical Geography Standard (ASGS)</a> ABS Structures and non-ABS structures</p>
<p>Ontology for the Australian Statistical Geography Standard (ASGS), a framework of statistical areas used by the Australian Bureau of Statistics (ABS) and other organisations to enable the publication of statistics that are comparable and spatially integrated. This ontology contains the definitions for the ABS Structures which are areas that the ABS designs specifically for outputting statistics.</p>
<ul>
<li>structures: Mesh Block, Statistical Areas (Level 1 to Level 4), Greater Capital City Statistical Areas, State or Territory, Country classes,</li>
<li>Indigenous structures: Indigenous location, Indigenous area, , Indigenous region classes</li>
<li>Urban structures: Urban Centre and Locality, Section of State Range, Section of State, and Significant Urban Area classes</li>
</ul>
<p>and for the Non ABS Structures which are not defined or maintained by the ABS but represent administrative areas for which the ABS is committed to providing a range of statistics. The classes defined here corresponds to ABS approximations of spatial areas or regions which are defined elsewhere</p>
<ul>
<li>Local Government Areas (LGAs)</li>
<li>Postal Areas (POAs)</li>
<li>State Suburbs (SSCs)</li>
<li>Commonwealth Electoral Divisions (CEDs)</li>
<li>State Electoral Divisions (SEDs)</li>
<li>Australian Drainage Divisions (ADDs)</li>
<li>Natural Resource Management Regions (NRMRs)</li>
<li>Tourism Regions (TRs)</li>
</ul>
<p>The ASGS uses Mesh Blocks as a common building block for all structures. Mesh Blocks are small enough that they can accurately approximate the changing administrative areas maintained by other organisations, without changing themselves.</p>
<p>The publication of the ASGS ontology is part of the Australian Bureau of Statistics contribution to a joint effort to publish authoritative, interconnected spatial products (Location Index project).</p>
<p>The ASGS Ontology is packaged in multiple graphs:</p>
<ul>
<li>http://linked.data.gov.au/def/asgs (this graph) contains the core classes for ASGS statistical units, and a small number of properties relating to their identity, classification, and containment hierarchy</li>
<li>http://linked.data.gov.au/def/asgs-cat contains the meshblock classification scheme</li>
<li>http://linked.data.gov.au/def/asgs-id contains specialised string types for identifiers and labels</li>
<li>http://linked.data.gov.au/def/asgs-path contains association classes and properties relating to paths between instances of the core classes</li>
<li>http://linked.data.gov.au/def/asgs-isof (deprecated) contains specialized predicates for containment relationships - this functionality is provided by the generic 'within' and 'contains' relations</li>
<li>http://linked.data.gov.au/def/asgs-code (deprecated) contains specialised annotation properties for identifiers and labels - this functionality has been superseded by a set of data-types to be used in conjunction with more generic properties</li>
<li>http://linked.data.gov.au/def/asgs-prop (deprecated) contains specialised ASGS properties for relationships, classifiers, identifiers and labels - this functionality has been superseded by use of types from standardized RDF vocabularies</li>
</u></dd>
</div>
</dl>
</div>
<div class="section" id="classes">
<h2>Classes</h2>
<div class="property entity" id="AustralianDrainageDivision">
<h3>Australian Drainage Division
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://linked.data.gov.au/def/asgs#AustralianDrainageDivision</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#isDefinedBy" title="The definition of the subject resource. Defined in The RDF Schema vocabulary (RDFS)">Is Defined By</a>
</th>
<td>
<a href="#asgs">ns1:asgs</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>Australian Drainage Divisions (ADD) are an ABS approximation of Bureau of Meteorology Drainage Divisions. Drainage Divisions are defined by major landscape features and climatic zones to form broad hydrological regions as represented in the Australian Hydrological Geospatial Fabric (Geofabric) 2014 version 2 developed by the Bureau of Meteorology. ADDs are approximated using one or more Mesh Blocks (MBs). ADDs can cross State and Territory (S/T) boundaries. ADDs cover the whole of geographic Australia without gaps or overlaps. The ADDs are Non ABS Structures within the Australian Statistical Geography Standard (ASGS). These are mostly administrative areas which are not defined or maintained by the ABS but for which the ABS is committed to providing a range of statistics. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia.</p></td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Feature">asgs:Feature</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/restriction" title="Convenience property for things that subclass owl:Restriction. Defined in Ontology Documentation Profile">Restriction</a>
</th>
<td>
<span>
<span>
<a href="http://www.opengis.net/ont/geosparql#sfContains">geo:sfContains</a>
<span>
<span class="cardinality">min</span>
<span>1</span>
</span><br>
</span>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="CommonwealthElectoralDivision">
<h3>Commonwealth Electoral Division
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://linked.data.gov.au/def/asgs#CommonwealthElectoralDivision</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#isDefinedBy" title="The definition of the subject resource. Defined in The RDF Schema vocabulary (RDFS)">Is Defined By</a>
</th>
<td>
<a href="#asgs">ns1:asgs</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>Commonwealth Electoral Divisions (CED) are an ABS approximation of Australian Electoral Commission (AEC) electoral division boundaries. An Australian Electoral Commission electoral division boundary is an area legally prescribed for the purpose of returning one member to the House of Representatives Australia's Federal Lower House of Parliament. Commonwealth Electoral Divisions may change as the Australian Electoral Commission revise their boundaries. Where the Australian Electoral Commission revise their boundaries the CEDs will be updated on an annual basis in July in conjunction with updates of other Non ABS Structures. CEDs are approximated using whole Statistical Areas Level 1 (SA1s). CEDs cover the whole of Australia without gaps or overlaps.The CEDs are Non ABS Structures within the Australian Statistical Geography Standard (ASGS). These are mostly administrative areas which are not defined or maintained by the ABS but for which the ABS is committed to providing a range of statistics. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia.</p></td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Feature">asgs:Feature</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/restriction" title="Convenience property for things that subclass owl:Restriction. Defined in Ontology Documentation Profile">Restriction</a>
</th>
<td>
<ul>
<li>
<span>
<span>
<a href="http://www.opengis.net/ont/geosparql#sfContains">geo:sfContains</a>
<span>
<span class="cardinality">min</span>
<span>1</span>
</span><br>
</span>
</span>
</li>
<li>
<span>
<span>
<a href="http://www.opengis.net/ont/geosparql#sfWithin">geo:sfWithin</a>
<span>
<span class="cardinality">exactly</span>
<span>1</span>
</span><br>
</span>
</span>
</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Country">
<h3>Country
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://linked.data.gov.au/def/asgs#Country</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#isDefinedBy" title="The definition of the subject resource. Defined in The RDF Schema vocabulary (RDFS)">Is Defined By</a>
</th>
<td>
<a href="#asgs">ns1:asgs</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td>
<ul>
<li><p>Australia (AUS) represents the geographic extent of Australia. This is set out in section 2B of the Acts Interpretation Act 1901 which currently defines Australia or the Commonwealth as meaning:‘…the Commonwealth of Australia and when used in a geographical sense includes Norfolk Island the Territory of Christmas Island and the Territory of Cocos (Keeling) Islands but does not include any other external Territory’.Prior to 2016 Norfolk Island was not included in the ASGS. However in line with Australian Government announced reforms to the governance of Norfolk Island and its inclusion into the definition of Geographic Australia the Territory of Norfolk Island was included in the 2016 ASGS. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia</p></li>
<li><p>Australia (AUS) represents the geographic extent of Australia. This is set out in section 2B of the Acts Interpretation Act 1901 which currently defines Australia or the Commonwealth as meaning:‘…the Commonwealth of Australia and when used in a geographical sense includes Norfolk Island the Territory of Christmas Island and the Territory of Cocos (Keeling) Islands but does not include any other external Territory’.Prior to 2016 Norfolk Island was not included in the ASGS. However in line with Australian Government announced reforms to the governance of Norfolk Island and its inclusion into the definition of Geographic Australia the Territory of Norfolk Island was included in the 2016 ASGS. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia</p></li>
</ul>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Feature">asgs:Feature</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="DestinationZone">
<h3>DestinationZone
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://linked.data.gov.au/def/asgs#DestinationZone</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#isDefinedBy" title="The definition of the subject resource. Defined in The RDF Schema vocabulary (RDFS)">Is Defined By</a>
</th>
<td>
<a href="#asgs">ns1:asgs</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>Destination Zones (DZN) are geographic areas primarily used for the analysis of Census Place of Work data. They are designed to represent the distribution of workplaces rather than residential dwellings. This means there is greater spatial detail in areas with high concentrations of workplaces. DZNs are jointly developed between the ABS and each State or Territory Transport Authority. DZNs are built from whole Mesh Blocks (MB) and aggregate to Statistical Areas Level 2 (SA2s). DZNs cover the whole of Australia without gaps or overlaps. The DZN regions are not an Australian Statistical Geography Standard (ASGS) structure however the ABS publishes Census data on these areas. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia.</p></td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Feature">asgs:Feature</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/restriction" title="Convenience property for things that subclass owl:Restriction. Defined in Ontology Documentation Profile">Restriction</a>
</th>
<td>
<ul>
<li>
<span>
<span>
<a href="http://www.opengis.net/ont/geosparql#sfContains">geo:sfContains</a>
<span>
<span class="cardinality">min</span>
<span>1</span>
</span><br>
</span>
</span>
</li>
<li>
<span>
<span>
<a href="http://www.opengis.net/ont/geosparql#sfWithin">geo:sfWithin</a>
<span>
<span class="cardinality">exactly</span>
<span>1</span>
</span><br>
</span>
</span>
</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Feature">
<h3>ASGS Feature
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://linked.data.gov.au/def/asgs#Feature</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#isDefinedBy" title="The definition of the subject resource. Defined in The RDF Schema vocabulary (RDFS)">Is Defined By</a>
</th>
<td>
<a href="#asgs">ns1:asgs</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>Super-class for all ABS Structures and Non-ABS Structures. Use</p>
<ul>
<li>dcterms:identifier for the code, with a suitable datatype from <a href='http://linked.data.gov.au/def/asgs-id'>ASGS-id</a></li>
<li>rdfs:label for the name, with a suitable datatype from <a href='http://linked.data.gov.au/def/asgs-id'>ASGS-id</a></li>
<li>geo:sfWithin, geo:sfContains for containment and nesting relations</li>
</ul></td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<a href="http://www.opengis.net/ont/geosparql#Feature">geo:Feature</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/superClassOf" title="Inverse of RDFS' subClassOf. Defined in Ontology Documentation Profile">Super Class Of</a>
</th>
<td>
<ul>
<li>
<span>
<a href="#AustralianDrainageDivision">asgs:AustralianDrainageDivision</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#CommonwealthElectoralDivision">asgs:CommonwealthElectoralDivision</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Country">asgs:Country</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#DestinationZone">asgs:DestinationZone</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#GreaterCapitalCityStatisticalArea">asgs:GreaterCapitalCityStatisticalArea</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#IndigenousArea">asgs:IndigenousArea</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#IndigenousLocation">asgs:IndigenousLocation</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#IndigenousRegion">asgs:IndigenousRegion</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#LocalGovernmentArea">asgs:LocalGovernmentArea</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#MeshBlock">asgs:MeshBlock</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#NaturalResourceManagementRegion">asgs:NaturalResourceManagementRegion</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#PostalArea">asgs:PostalArea</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#RemotenessArea">asgs:RemotenessArea</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#SectionOfState">asgs:SectionOfState</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#SectionOfStateRange">asgs:SectionOfStateRange</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#SignificantUrbanArea">asgs:SignificantUrbanArea</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StateElectoralDivision">asgs:StateElectoralDivision</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StateOrTerritory">asgs:StateOrTerritory</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StateSuburb">asgs:StateSuburb</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StatisticalAreaLevel1">asgs:StatisticalAreaLevel1</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StatisticalAreaLevel2">asgs:StatisticalAreaLevel2</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StatisticalAreaLevel3">asgs:StatisticalAreaLevel3</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#StatisticalAreaLevel4">asgs:StatisticalAreaLevel4</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#TourismRegion">asgs:TourismRegion</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#UrbanCentreAndLocality">asgs:UrbanCentreAndLocality</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="property entity" id="GreaterCapitalCityStatisticalArea">
<h3>Greater Capital City Statistical Area
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://linked.data.gov.au/def/asgs#GreaterCapitalCityStatisticalArea</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#isDefinedBy" title="The definition of the subject resource. Defined in The RDF Schema vocabulary (RDFS)">Is Defined By</a>
</th>
<td>
<a href="#asgs">ns1:asgs</a>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>Greater Capital City Statistical Areas (GCCSAs) are designed to represent the functional extent of each of the eight State and Territory capital cities. They include the people who regularly socialise shop or work within the city but live in the small towns and rural areas surrounding the city. GCCSAs are defined using the capital city labour markets. The labour market is sometimes used as a de-facto measure of the functional extent of a city as it contains the majority of the commuting population. It is important to note that GCCSAs do not define the built up edge of the city this is better represented by Urban Centres and Localities (UCLs) or Significant Urban Areas (SUAs). The GCCSA is designed to provide a stable definition of the capital cities to enable production of economic indicators which integrate variables collected over long periods of time. GCCSAs are aggregations of whole Statistical Areas Level 4 (SA4s) in the ASGS Main Structure. Whole GCCSAs aggregate to State and Territory (S/T). GSSCAs are contiguous and in aggregate cover the whole of Australia without gaps or overlaps. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia.</p></td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Feature">asgs:Feature</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/restriction" title="Convenience property for things that subclass owl:Restriction. Defined in Ontology Documentation Profile">Restriction</a>
</th>
<td>
<span>
<span>
<a href="http://www.opengis.net/ont/geosparql#sfWithin">geo:sfWithin</a>
<span>
<span class="cardinality">exactly</span>
<span>1</span>
</span><br>
</span>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="IndigenousArea">