@prefix geojson: <https://purl.org/geojson/vocab#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://www.example.com/features/pt2> a geojson:Feature ;
    geojson:geometry [
        a geojson:Point ;
        geojson:coordinates ( 174.7501603083 -36.9307359096 )
    ] .

<http://www.example.com/features/ls2> a geojson:Feature ;
    geojson:geometry [
        a geojson:LineString ;
        geojson:coordinates ( (174.7 -36.9) (175.0 -37.1) )
    ] .

<http://www.example.com/collections/c1>
    geojson:features <http://www.example.com/features/pt2> ;
    geojson:features <http://www.example.com/features/ls2> .
