Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
145 views

How to usw TouchXML to parse opengis xls?

I'd like to parse a osm generated xml file. It has got the structure of opengis xls. I really don't know how to parse that with TouchXML. Hope you guys can help me on that… Here's some sample xml ...
1
vote
1answer
173 views

Why curve is 1-dimensional object?

In "OpenGIS® Implementation Standard for Geographic information - Simple feature access - Part 1: Common architecture" is stated: A Curve is a 1-dimensional geometric object that is the ...
0
votes
0answers
142 views

How to transfer geotools geometry data over a web service

We have to use geoserver to store geodata in our newest project. Unfortunately we have no experience with geospatial data so far, so the question might be obvious to others. In the first step we ...
0
votes
2answers
306 views

MySQL Great Circle intersection (do two roads cross?)

MySQL OpenGIS CROSSES doesn't seem to work for me: SET @ls = 'LineString(1 1, 2 2, 3 3)'; SET @xx = 'LineString(0 2, 10 2)'; # SELECT AsText(EndPoint(GeomFromText(@ls))); select ...