Advertisement
Guest User

GNAF Register of Registers

a guest
Aug 30th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. @prefix : <http://gnafld.net/def/gnaf#> .
  2. @prefix dc: <http://purl.org/dc/elements/1.1/> .
  3. @prefix dbo: <http://dbpedia.org/ontology/> .
  4. @prefix dct: <http://purl.org/dc/terms/> .
  5. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  6. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  7. @prefix xml: <http://www.w3.org/XML/1998/namespace> .
  8. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  9. @prefix prov: <http://www.w3.org/ns/prov#> .
  10. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  11. @prefix schema: <http://schema.org/> .
  12. @prefix reg: <http://purl.org/linked-data/registry#> .
  13. @prefix xhv: <https://www.w3.org/1999/xhtml/vocab#> .
  14. @prefix gnaf: <http://linked.data.gov.au/def/gnaf#> .
  15. @prefix : <http://linked.data.gov.au/dataset/gnaf/> .
  16. @base <http://linked.data.gov.au/dataset/gnaf> .
  17.  
  18. <http://linked.data.gov.au/dataset/gnaf> a dcat:Dataset , reg:Register ;
  19. rdfs:label "GNAF ontology"^^xsd:string ;
  20. dc:creator "PSMA Australia"^^xsd:string ;
  21. dct:creator <http://www.psma.com.au> ;
  22. dc:contributor "Nicholas Car"@en ;
  23. dct:contributor <http://orcid.org/0000-0002-8742-7730> ;
  24. dct:modified "2018-02-07"^^xsd:date ;
  25. dc:publisher "PSMA Australia"^^xsd:string ;
  26. dct:source <https://data.gov.au/dataset/geocoded-national-address-file-g-naf> ;
  27. rdfs:comment """A Linked Data version of the Geocoded National Address File (G-NAF).
  28.  
  29. The G-NAF is Australia’s authoritative, geocoded address file. It contains more than 13 million Australian physical address records. The records include geocodes which are latitude and longitude map coordinates with coordinate reference system details and other information necessary to precisely locate addresses on the earth's surface.
  30.  
  31. The G-NAF does not contain any names or personal information.
  32.  
  33. The base content of the G-NAF is available freely online at <https://data.gov.au/dataset/geocoded-national-address-file-g-naf>.
  34.  
  35. The main ontology used to deliver the information in this dataset is the GNAF Ontology, online at <http://linked.data.gov.au/def/gnaf>. It draws heavily from the OWL ontology version of the ISO19160-1:2015 \"Addressing -- Part 1: Conceptual model\" standard (<https://www.iso.org/standard/61710.html>) which has been created by the ISO TC211, Group for Ontology Management (GOM) and published online by the Australian Government Linked Data Working Group at <http://reference.data.gov.au/def/ont/iso19160-1-address>."""@en ;
  36.  
  37. reg:containedItemClass reg:Register ; # this entry point for the GNAF dataset is a register that contains other registers
  38. .
  39.  
  40. <http://linked.data.gov.au/dataset/gnaf/address/> a reg:Register ;
  41. rdfs:label "Address Register"@en ;
  42. reg:containedItemClass gnaf:Address ;
  43. reg:register <http://linked.data.gov.au/dataset/gnaf> ;
  44. .
  45.  
  46. <http://linked.data.gov.au/dataset/gnaf/streetLocality/> a reg:Register ;
  47. rdfs:label "Street Locality Register"@en ;
  48. reg:containedItemClass gnaf:StreetLocality ;
  49. reg:register <http://linked.data.gov.au/dataset/gnaf> ;
  50. .
  51.  
  52. <http://linked.data.gov.au/dataset/gnaf/locality/> a reg:Register ;
  53. rdfs:label "Locality Register"@en ;
  54. reg:containedItemClass gnaf:Locality ;
  55. reg:register <http://linked.data.gov.au/dataset/gnaf> ;
  56. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement