以下GML 3.2描述的有效Turtle RDF表示是什么?
<gml:Point gml:id="Point.8307">
<gml:pos srsDimension="3">3512838.613 5516087.399 126.135</gml:pos>
</gml:Point>
是否有可以使用的官方GML 3.2本体? 它看起来怎么样? 这样?:
@prefix gml: <http://www.opengis.net/gml/3.2#> .
gml:Point
gml:id "Point.8307" ;
gml:pos [
gml:pos_x 3512838.613 ;
gml:pos_y 5516087.399 ;
gml:pos_z 126.135
]
.