-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassets.py
More file actions
127 lines (127 loc) · 3.8 KB
/
assets.py
File metadata and controls
127 lines (127 loc) · 3.8 KB
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
ASSETS = [
#
# AGLDWG
#
{
'label': 'AGRIF Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/agrif',
'regex': '<h1>The Australian Government Records Interoperability Framework \(AGRIF\) ontology</h1>'
}
]
},
{
'label': 'Dataset Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/dataset',
'regex': '\<h1\>Dataset Ontology\<\/h1\>'
}
]
},
{
'label': 'FSDF Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/fsdf',
'regex': '\<h1\>FSDF ontology\<\/h1\>'
}
]
},
{
'label': 'G-NAF Dataset',
'uris': [
{
'address': 'http://linked.data.gov.au/dataset/gnaf',
'regex': '\<h1\>G-NAF - distributed as Linked Data\<\/h1\>'
}
]
},
{
'label': 'G-NAF Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/gnaf',
'regex': '\<h1\>GNAF ontology\<\/h1\>'
}
]
},
{
'label': 'ISO19160 Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/iso19160-1-address',
'regex': '\<h1\>ISO19160-1\:2015 Address ontology\<\/h1\>'
}
]
},
{
'label': 'ISO19160 NZ Profile Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/iso19160-1-address-nz-profile',
'regex': '\<h1\>ISO19160-1\:2015 Address ontology - NZ Profile\<\/h1\>'
}
]
},
{
'label': 'Place Names Ontology',
'uris': [
{
'address': 'http://linked.data.gov.au/def/placenames',
'regex': '\<h1\>Place Names Ontology\<\/h1\>'
}
]
},
{
'label': 'Registry Ontology\'s Status Vocabulary',
'uris': [
{
'address': 'http://linked.data.gov.au/def/reg-status',
'regex': '\<h1\>Registry Status Vocabulary\<\/h1\>'
}
]
},
#
# Non-AGLDWG
#
{
'label': 'AGIFT',
'uris': [
{
'address': 'https://data.naa.gov.au/def/agift.html',
'regex': '<h1>Australian Governments\' Interactive Functions Thesaurus \(AGIFT\)</h1>'
}
]
},
{
'label': 'GA Samples, Surveys, Sites',
'uris': [
{
'address': 'http://pid.geoscience.gov.au/sample/?_format=text/turtle',
'regex': 'rdfs:label \"Sample igsn:AU1000082\"\^\^xsd:string ;'
},
{
'address': 'http://pid.geoscience.gov.au/sample/AU239?_format=text/turtle',
'regex': 'rdfs:label \"Sample igsn:AU239\"\^\^xsd:string ;'
},
{
'address': 'http://pid.geoscience.gov.au/survey/ga/?_format=text/turtle',
'regex': '<http://pid.geoscience.gov.au/survey/ga/> a reg:Register ;'
},
{
'address': 'http://pid.geoscience.gov.au/survey/ga/801?_format=text/turtle',
'regex': '<http://pid.geoscience.gov.au/survey/ga/801> a gapd:PublicSurvey,'
},
{
'address': 'http://pid.geoscience.gov.au/site/ga/?_format=text/turtle',
'regex': 'rdfs:label \"Site 94\"\^\^xsd:string ;'
},
{
'address': 'http://pid.geoscience.gov.au/site/ga/94?_format=text/turtle',
'regex': 'rdfs:label \"Site 94\"\^\^xsd:string ;'
}
]
}
]