Hi,
I would like to describe a geo property, named location, and describing one Point (WGS84 coordinate system), but I have no idea how to do that
typically, the RDF data would be something like
<rdf:RDF xmlns:rdf="
http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:geo="
http://www.w3.org/2003/01/geo/wgs84_pos#"> <geo:Point>
<geo:lat>55.701</geo:lat>
<geo:long>12.552</geo:long>
</geo:Point>
</rdf:RDF>
What is the best way to describe such data for MyIndividual.location ? Should I use blank nodes for that ?
Thanks
Richard