Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. A plot:Location to capture most of the column values with its datatype properties.

  2. A geosparql:hasGeometry to capture the latitude and longitude coordinates.

  3. A plot:locationMethod to capture the method used to determine the location.

  4. A plot:Location is location of a plot:Site (plot-x:isLocationOf)

RDF Example

Code Block
breakoutModewide
languagejs
@prefix corveg-cv: <http://linked.data.gov.au/def/corveg-cv/> .
@prefix corveg-location: <http://linked.data.gov.au/dataset/corveg/location/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix geosparql: <http://www.opengis.net/ont/geosparql#> .
@prefix locn: <http://www.w3.org/ns/locn#> .
@prefix plot: <http://linked.data.gov.au/def/plot/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

corveg-location:l-13727 a plot:Location ;
    rdfs:label "Location 13727" ;
    plot-x:isLocationOf corveg-site:site-13864 ;
    plot:locationMethod corveg-cv:bfdac18b-eb08-4842-8a7c-0f0571379b61 ;
    plot:mapScale corveg-cv:c010e5db-04c7-4bdb-a492-e7aa1d2a0d32 ;
    plot:mapsheetName "SCORIA" ;
    plot:mapsheetNumber "9048" ;
    dct:description "COPPIN LOGGING AREA, COOMINGLAH STATE FOREST NORTHWEST OF MONTO (TSP)." ;
    dct:identifier 13727 ;
    geosparql:hasGeometry [ a geo:Point ;
            geo:lat -24.77091153 ;
            geo:long 150.95303268 ] ;
    locn:geographicName "BURNETT" .

...