2
votes
1answer
173 views

How to find the elevation of a lon/lat polygon

I am trying to create an application that uses terrain information about an area. I use lon/lat (4326) polygons from a kml file and store the geometries in postgis. I need to find the elevation ...
1
vote
1answer
335 views

Difference between multipolygon and polygon in PostGIS

Good morning every body; Can any one tell me the difference between point and multipoint? linestring and multilinestring? polygon and multipolygon? In PostGIS What is the secret behind defining ...
1
vote
1answer
190 views

Postgis ST_Contains polygon one table

I have a postgis spatial table with polygons in it, having an id (gid) and a geometry column named way (which actually stores the polygon boundary). The tablehead looks as follows: || gid (integer) | ...
0
votes
1answer
103 views

Postgis error on select all intersetcs of a polygon

i can get all polygon on intersects this:-7.9245860488441 -37.122384500713,-7.9245860488441 -37.11904223938,-7.9233955716106 -37.1187601948 SELECT * FROM propriedades WHERE ST_Intersects( ...
0
votes
1answer
324 views

save google map polygon to postgreSQL database

i develop a web-based application where a user will create a polygon on a map and the database will return points of interest the problem is that the postgreSQL saves the polygon in a different way ...
1
vote
1answer
300 views

MongoDB spatial query for Polygons

I will build a GIS system based on polygons, not just points. I wanted to use MongoDB or PostGIS. How do this in MongoDB? Query A - get the center of a polygon Query B - distance between two ...
1
vote
1answer
382 views

postgis split polygon using points

I would like to extract polygon parts using points to cut it. I have seen ST_Dump and ST_Split but they do not seem to do the trick. Should I create more points in order to create a line segment and ...
2
votes
1answer
444 views

How do I clean up self-intersecting polygons in a spatial database?

I have some spatial data (MapInfo files) that contains self-intersecting polygons. These cause problems in my processing, in particular I can't generate geometric unions in PostGIS. Is there an easy ...
1
vote
2answers
673 views

Postgis random point inside a polygon

Hello all If i have a polygon in Postgis how can i find-calculate random points inside this polygon?
1
vote
3answers
2k views

Google maps api,Postgis,Multipolygon

Hello all PostGis WKT format of Multipolygon is: MULTIPOLYGON( ((20.229 39.409,20.2241 39.401,20.220 39.410,20.229 39.409)), ((20.209 39.407,20.223 39.400,20.211 39.402,20.209 39.4076)) ) Google ...
2
votes
2answers
3k views

How to insert polygon with hole in WKT (well known text) format into postgis table?

I have a table in postgis, which has 4 columns: ID, name, the_geom, SRID. I need to write an SQL query which will insert this exterior polygon (Element 1) in the table named "woods", ID = 44, the name ...
7
votes
2answers
5k views

In PostGIS, how do I find all points with a polygon?

I am using PostgreSQL with the GIS extension to store map data, together with OpenLayers, GeoServer etc. Given a polygon, e.g. of a neighborhood, I need to find all LAT/LONG points stored in some ...
3
votes
2answers
2k views

How can I create a polygon using fields in PostgreSQL?

I have 8 real values in a table that I'd like to combine into a polygon. I haven't been able to figure out how to create a polygon using these values though. I keep trying variations of SELECT ...