forked from RDFLib/pyLODE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasgs.json
1847 lines (1847 loc) · 72 KB
/
asgs.json
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
[
{
"@id": "http://linked.data.gov.au/def/asgs#StateElectoralDivision",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "State Electoral Divisions (SED) are an ABS approximation of State Electoral Districts. A State Electoral District is an area legally prescribed for the purpose of returning one or more members to the State or Territory Lower Houses of Parliament or the relevant equivalent. State Electoral Divisions may change as State or Territory authorities revise their boundaries. Where the Australian Electoral Commission revise their boundaries the SEDs will be updated on an annual basis in July in conjunction with updates of other Non ABS Structures.SEDs are approximated using whole Statistical Areas Level 1 (SA1s). SEDs do not cross State and Territory (S/T) boundaries and they cover the whole of Australia without gaps or overlaps. The Other Territories (OT) of Jervis Bay Norfolk Island Christmas Island and the Cocos (Keeling) Islands are allocated to 'Unclassified (OT)'. The SEDs 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "State Electoral Division"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL431C45"
},
{
"@id": "_:ub1bL426C45"
}
]
},
{
"@id": "_:ub1bL431C45",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:ub1bL426C45",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StatisticalAreaLevel1"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "http://purl.org/dc/terms/description",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML",
"@type": [
"http://www.w3.org/2000/01/rdf-schema#Datatype"
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#GreaterCapitalCityStatisticalArea",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Greater Capital City Statistical Area"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL250C56"
}
]
},
{
"@id": "_:ub1bL250C56",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "http://linked.data.gov.au/org/csiro",
"@type": [
"https://schema.org/Organization"
],
"https://schema.org/name": [
{
"@value": "CSIRO"
}
],
"https://schema.org/url": [
{
"@id": "https://www.csiro.au"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "State and Territory (S/T) are separate spatial units representing the States and Territories within Australia. Jervis Bay Territory the Territories of Christmas Island; Cocos (Keeling) Islands and Norfolk Island are included as one spatial unit at the State and Territory level under the category of Other Territories. S/T are aggregations of one or more Statistical Area Level 4 (SA4s) in the ASGS Main Structure. S/T boundaries 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "StateOrTerritory"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL444C39"
}
]
},
{
"@id": "_:ub1bL444C39",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#Country"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML",
"@value": "<p>Super-class for all ABS Structures and Non-ABS Structures. Use</p>\n<ul>\n<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>\n<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>\n<li>geo:sfWithin, geo:sfContains for containment and nesting relations</li>\n</ul>"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "ASGS Feature"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://www.opengis.net/ont/geosparql#Feature"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#PostalArea",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "Postal Areas (POAs) are an ABS approximation of postcodes created to enable the release of ABS data on areas that as closely as possible approximate postcodes. This enables the comparison of ABS data with other data that has been collected using postcodes as the geographic reference. POAs exclude non-mappable Australia Post postcodes such as: post office box postcodes some delivery route postcodes which are also covered by other postcodes (a situation which often occurs in rural areas).POAs are approximated using one or more Mesh Blocks (MBs). POAs cover the whole of geographic Australia without gaps or overlaps. The POAs 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Postal area"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL366C33"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
}
]
},
{
"@id": "_:ub1bL366C33",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#MeshBlock"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#NaturalResourceManagementRegion",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "Natural Resource Management Regions (NRMR) are an ABS approximation of Natural Resource Management regions (NRMs) which are defined through the Australian Government National Landcare Program. They are administrative regions primarily used by the Department of the Environment and Energy and the Department of Agriculture and Water Resources who share responsibility for delivery of the Australian Government's environment and sustainable agriculture programs which are broadly referred to as Natural Resource Management (NRM). NRMRs change occasionally as States and Territories revise their boundaries. NRMRs are approximated using one or more Mesh Blocks (MBs). NRMRs do not cross State and Territory (S/T) boundaries except for Jervis Bay which is included in a NSW region. NRMRs cover the whole of geographic Australia without gaps or overlaps. The NRMRs 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Natural Resource Management Region"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL353C54"
},
{
"@id": "_:ub1bL348C54"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
}
]
},
{
"@id": "_:ub1bL353C54",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:ub1bL348C54",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#MeshBlock"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "http://linked.data.gov.au/org/abs",
"@type": [
"https://schema.org/Organization"
],
"https://schema.org/name": [
{
"@value": "Australian Bureau of Statistics"
}
],
"https://schema.org/url": [
{
"@id": "https://www.abs.gov.au"
}
]
},
{
"@id": "http://purl.org/dc/terms/modified",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#LocalGovernmentArea",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "Local Government Areas (LGAs) are an ABS approximation of gazetted local government boundaries as defined by each State and Territory Local Government Department. LGAs cover incorporated areas of Australia. Incorporated areas are legally designated parts of a State or Territory over which incorporated local governing bodies have responsibility. The major areas of Australia not administered by incorporated bodies are the northern parts of South Australia and all of the Australian Capital Territory and the Other Territories. These regions are identified as ‘Unincorporated’ in the Australian Statistical Geography Standard (ASGS) LGA structure. A small number of LGA boundaries and names change each year and the ABS LGAs are updated on an annual basis to reflect these changes. LGAs are approximated using whole Mesh Blocks (MBs). In aggregation LGAs cover Australia without gaps or overlaps. The LGAs are Non ABS Structures within the 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."
},
{
"@value": "Local Government Areas (LGAs) are an ABS approximation of gazetted local government boundaries as defined by each State and Territory Local Government Department. LGAs cover incorporated areas of Australia. Incorporated areas are legally designated parts of a State or Territory over which incorporated local governing bodies have responsibility. The major areas of Australia not administered by incorporated bodies are the northern parts of South Australia and all of the Australian Capital Territory and the Other Territories. These regions are identified as ‘Unincorporated’ in the Australian Statistical Geography Standard (ASGS) LGA structure. A small number of LGA boundaries and names change each year and the ABS LGAs are updated on an annual basis to reflect these changes. LGAs are approximated using whole Mesh Blocks (MBs). In aggregation LGAs cover Australia without gaps or overlaps. The LGAs are Non ABS Structures within the 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Local Government Area"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL307C42"
},
{
"@id": "_:ub1bL302C42"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
}
]
},
{
"@id": "_:ub1bL307C42",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:ub1bL302C42",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#MeshBlock"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "http://www.w3.org/2002/07/owl#qualifiedCardinality",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#StateSuburb",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "State Suburbs (SSC) are an ABS approximation of localities gazetted by the Geographical Place Name authority in each State and Territory (S/T). Gazetted Localities are the officially recognised boundaries of suburbs (in cities and larger towns) and localities (outside cities and larger towns). Gazetted Localities cover most of Australia. Presently there remain areas of rural South Australia and rural Australian Capital Territory for which Gazetted Localities remain undefined. Various islands offshore from New South Wales Victoria and Tasmania and some inshore water areas and islands are also undefined. Since 1996 Locality boundaries have been formalised for most areas of Australia through a program coordinated by the Permanent Committee on Place Names (PCPN) under the umbrella of the Intergovernmental Committee On Surveying and Mapping (ISCM). Areas where localities are not gazetted are represented by Remainder SSCs.SSCs are approximated using one or more Mesh Blocks (MBs). SSCs cover the whole of geographic Australia without gaps or overlaps including the Remainder SSCs.The SSCs 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "State Suburb"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL457C34"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL462C34"
}
]
},
{
"@id": "_:ub1bL457C34",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#MeshBlock"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "_:ub1bL462C34",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#CommonwealthElectoralDivision",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Commonwealth Electoral Division"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL196C52"
},
{
"@id": "_:ub1bL191C52"
}
]
},
{
"@id": "_:ub1bL196C52",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StateOrTerritory"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:ub1bL191C52",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StatisticalAreaLevel1"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "http://purl.org/dc/terms/source",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://purl.org/dc/terms/type",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#DestinationZone",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "DestinationZone"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL224C38"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL219C38"
}
]
},
{
"@id": "_:ub1bL224C38",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StatisticalAreaLevel2"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:ub1bL219C38",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#minQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#MeshBlock"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfContains"
}
]
},
{
"@id": "http://purl.org/dc/terms/publisher",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#SignificantUrbanArea",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "Significant Urban Areas (SUAs) represent towns or cities with 10 000 people or more. They are based on Urban Centres and Localities (UCLs) but are defined by the larger Statistical Areas Level 2 (SA2s). A single SUA can represent either a single Urban Centre or a cluster of related Urban Centres. Using SA2s to define SUAs ensures a wider range of more regularly updated data is available for these areas (such as Estimated Resident Population and Building Approvals) compared to UCLs where only Census data is available. The SUA structure does not aggregate to State or Territory (S/T) level as SUAs may cross S/T boundaries. In aggregate SUAs cover Australia without gaps or overlaps as they include a remainder area 'Not in any Significant Urban Area'. An additional code (Outside Australia) has also been added to represent areas not covered by Geographical Australia."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Significant Urban Area"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
}
]
},
{
"@id": "https://surroundaustralia.com",
"@type": [
"https://schema.org/Organization"
],
"https://schema.org/name": [
{
"@value": "SURROUND Australia Pty Ltd"
}
],
"https://schema.org/url": [
{
"@id": "https://surroundaustralia.com"
}
]
},
{
"@id": "http://purl.org/dc/terms/created",
"@type": [
"http://www.w3.org/2002/07/owl#AnnotationProperty"
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#MeshblockCategory",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The class of meshblock categories, as defined in ASGS"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Meshblock category"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "https://www.abs.gov.au/ausstats/[email protected]/Lookup/by%20Subject/1270.0.55.001~July%202016~Main%20Features~Mesh%20Blocks%20(MB)~10012"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://www.w3.org/2004/02/skos/core#Concept"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#IndigenousArea",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "Indigenous Areas (IAREs) are medium sized geographical areas designed to facilitate the release of statistics with multiple variables for Aboriginal and Torres Strait Islander Peoples. IAREs provide a balance between spatial resolution and population size which provides the ability to release more detailed socio-economic attribute data than is available on Indigenous Locations (ILOCs). IAREs are aggregates of Indigenous Locations (ILOCs) and aggregate up to Indigenous Regions (IREGs). They 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Indigenous Area"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL263C37"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
}
]
},
{
"@id": "_:ub1bL263C37",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#IndigenousRegion"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs",
"@type": [
"http://www.w3.org/2002/07/owl#Ontology"
],
"http://purl.org/dc/terms/contributor": [
{
"@id": "https://orcid.org/0000-0002-8742-7730"
}
],
"http://purl.org/dc/terms/created": [
{
"@value": "2018-11-23"
}
],
"http://purl.org/dc/terms/creator": [
{
"@id": "https://orcid.org/0000-0002-4305-6085"
},
{
"@id": "https://orcid.org/0000-0002-3884-3420"
}
],
"http://purl.org/dc/terms/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>"
}
],
"http://purl.org/dc/terms/modified": [
{
"@value": "2020-02-03"
}
],
"http://purl.org/dc/terms/publisher": [
{
"@id": "http://linked.data.gov.au/org/abs"
}
],
"http://purl.org/dc/terms/rights": [
{
"@value": "Copyright 2018 Australian Bureau of Statistics."
}
],
"http://purl.org/dc/terms/source": [
{
"@id": "https://www.abs.gov.au/websitedbs/D3310114.nsf/home/Australian+Statistical+Geography+Standard+(ASGS)"
}
],
"http://purl.org/dc/terms/title": [
{
"@value": "ASGS Ontology"
}
],
"http://www.w3.org/2002/07/owl#imports": [
{
"@id": "http://www.opengis.net/ont/geosparql"
}
],
"https://schema.org/codeRepository": [
{
"@id": "https://github.com/AGLDWG/asgs-ont/"
}
]
},
{
"@id": "http://linked.data.gov.au/def/asgs#StatisticalAreaLevel1",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://purl.org/dc/terms/description": [
{
"@value": "Statistical Areas Level 1 (SA1s) are designed to maximise the spatial detail available for Census data. Most SA1s have a population of between 200 to 800 persons with an average population of approximately 400 persons. This is to optimise the balance between spatial detail and the ability to cross classify Census variables without the resulting counts becoming too small for use. SA1s aim to separate out areas with different geographic characteristics within Suburb and Locality boundaries. In rural areas they often combine related Locality boundaries. SA1s are aggregations of Mesh Blocks (MBs). Whole SA1s aggregate to form Statistical Areas Level 2 (SA2s) Indigenous Locations (ILOCs) Urban Centres and Localities (UCLs) Remoteness Areas (RAs) Commonwealth Electoral Divisions (CEDs) and State Electoral Divisions (SEDs). SA1s 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."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://linked.data.gov.au/def/asgs"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Statistical Area Level 1"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:ub1bL490C44"
},
{
"@id": "_:ub1bL475C44"
},
{
"@id": "http://linked.data.gov.au/def/asgs#Feature"
},
{
"@id": "_:ub1bL485C44"
},
{
"@id": "_:ub1bL480C44"
}
]
},
{
"@id": "_:ub1bL490C44",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#maxQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#UrbanCentreAndLocality"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
]
},
{
"@id": "_:ub1bL475C44",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#onClass": [
{
"@id": "http://linked.data.gov.au/def/asgs#StatisticalAreaLevel2"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "http://www.opengis.net/ont/geosparql#sfWithin"
}
],
"http://www.w3.org/2002/07/owl#qualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
"@value": "1"
}
]
},
{
"@id": "_:ub1bL485C44",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#maxQualifiedCardinality": [
{
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",