3
votes
2answers
105 views

How to clip WorldMap with polygon in R?

I have imported a world map dataset from www.GADM.org using the R package raster. I would like to clip it to a polygon I create to reduce the size of the map. I can retrieve the data and I can create ...
1
vote
0answers
59 views

How to extract part of a polygon in R?

I would like to create a map of Europe in R to plot some of my data. I have modified the code below (taken from: http://www.r-bloggers.com/provincial-map-using-gadm/) to give me a map of Europe. All ...
0
votes
0answers
43 views

How to create RGeo polygon in Ruby from WKT when the polygon has errors

I'm working with a MySQL database with polygons stored in WKT format. Many polygons in the database have duplicate points (e.g. in the below example, the point -122.323502 47.600959 is repeated three ...
2
votes
2answers
118 views

Match point to polygons in a big polygon list

I have a big list of polygons (say size 250,000) and a big list of points (say size 100,000). What I need to do is to find to which polygon(s) does each of these points belong. The polygons are ...
-1
votes
1answer
264 views

Convert a shapefile from polygons to points? [closed]

I have a non-overlapping polygon-based shapefile (.shp) with a large spatial extent and many dozens of associated attributes. The shapefile is projected in UTMs. I would like to convert the polygons ...
2
votes
1answer
174 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
3answers
99 views

“ray through vertex” special case when detecting point in polygon

To detect if a point is in a polygon, you project a line from the point, to infinity, and see how many of polygon's vertices it intersects with... simple enough. My problem is that if the ray ...
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
votes
1answer
69 views

how to convert an image/map into a GoogleMaps polygon?

If I want to use an image (map) as a "guide" to create a polygon for a GoogleMaps layer, can anyone give me a tip how to approach that best? Would this be done best with a GIS software? i would ...
0
votes
1answer
239 views

query for show latitude longitude polygon in mysql

i have a polygon and point i use query to detect latitude longitude location point with query mysql SELECT X(coord), Y(coord) FROM geometry and it works but how to show vertices(points) polygon in ...
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( ...
2
votes
1answer
243 views

How can I handle an “orphaned hole” in a polygon shapefile in R or ArcGIS?

I am trying to make a spatial overlay between two polygons ("grd" and "range") using the over function (rgeos). This code works for all files but one: range.grd.overlay <- grd[!is.na(over(grd, ...
0
votes
1answer
114 views

How to close an open polygon in mysql GIS spacial extensions

I have a mysql table containing polygons some of which are open and I need to close them. Presumably by appending the "StartPoint" to the end of the "Linestring" and rewriting as a polygon. Any ideas? ...
2
votes
1answer
114 views

How to store room shape data in Rails?

I'm writing a Rails app that needs to store shape data representing the floor plans of public spaces. The spaces are mostly churches and concert halls. Many shapes will be very simple ("fans" or ...
1
vote
2answers
208 views

Coloring polygons in a shapefile

I've got an ESRI Shapefile containing polygons of administrative regions, and data corresponding to those regions. I'd like to produce images of those shapefiles colored according to the data, like ...
2
votes
1answer
322 views

LatLngBounds from polygon in a kml file?

I am new to google maps and the API, trying to have the map pan to an area on a click. I'm not having a great time finding what I need in the API reference and not at all sure how to go about this so ...
2
votes
1answer
658 views

How to convert shape file type from polyline to polygon?

I have a shape file whose file type is polyline. But I want convert it to polygon. Is it possible with free sources? How can I convert shape file type from polyline to polygon?
0
votes
1answer
188 views

mysql polygon search fails

In my table I have three geospatial fields: `lat` decimal(12,7) NOT NULL, `lon` decimal(12,7) NOT NULL, `location` point NOT NULL, And three geospatial indices: KEY `lat` (`lat`), KEY `lon` ...
2
votes
2answers
174 views

Horseshoe shaped polygon

I have the following kml polygon: <Polygon><outerBoundaryIs><LinearRing><coordinates>20.002,80.002 20,80.002 20,80.004 20.006,80.004 20.006,80.001 20.002,80.001 20.002,80.002 ...
0
votes
4answers
591 views

Coordinate Points to Polygons

I have a large set of coordinates, which include the likes of: 59.284 18.42 59.401 18.078 58.894 17.854 59.277 18.742 59.219 18.186 59.472 18.108 The latitude coordinates have a resolution of 0.001 ...
1
vote
0answers
82 views

mysql gis poylgon insert fail

i'm a brazilian, and have a project that I using Google Maps API + GWT + MySQL but, i've problem, i can't create a polygon geometry in BD with more then 3 decimal places. If I run the query: INSERT ...
1
vote
2answers
269 views

Finding row with coordinates inside a defined polygon in MySQL

I'm trying to figure out how to go about returning a set of records which have coordinates within a polygon. I have looked at the MySQL spacial extensions but they don't currently support searching ...
1
vote
1answer
656 views

Algorithm - How to build a polygon around a polyline

I am building a web site using googles Map API. However, as I am on a shared server, I do not have access to a database with spatial extensions. Given an itinerary, which is nothing more than a ...
18
votes
2answers
3k views

Simplified (or smooth) polygons that contain the original detailed polygon

I have a detailed 2D polygon (representing a geographic area) that is defined by a very large set of vertices. I'm looking for an algorithm that will simplify and smooth the polygon, (reducing the ...
2
votes
1answer
903 views

MySQL Find Polygon Nearest to Point

I have a MySQL database that contains geo-tagged objects. The objects are tagged by using a bounding polygon that the user draws and my program exports into the database. The bounding polygon is ...
3
votes
1answer
4k views

google maps v3 API mouseover with polygons. Not working

I'm trying to get mouseover to work polygons in google maps api v3. I've tried the answer provided in this post: http://stackoverflow.com/questions/1751710/google-maps-v3-api-mouseover-with-polygons ...
1
vote
1answer
1k views

How do i get the coordinates of all four corners of a Rectangle?

How can i retrieve OR calculate the coordinates of the NW or SE corners of a Rectangle? I'm using Google Maps API v3 and I know there is the getBounds() method which returns the NE and SW coordinates ...
2
votes
1answer
854 views

How to convert a GEOS MultiLineString to Polygon using Python?

I am developing a GeoDjango application where users can upload map files and do some basic mapping operations like querying features inside polygons. I recognized that users happen to upload ...
0
votes
2answers
1k views

GIS: Converting multi polygons to multiple features

I am involved in a GIS project. I have a base map file (shape file) that contains the road layer for a large portion of a town. The problem is that the shape file contains only two features each ...
3
votes
2answers
713 views

Determining if a point is on a road

If I have a polyline that describes a road and I know the road width at all parts, is there an algorithm I can use to determine if a point is on the road? I'm not entirely sure how to do this since ...
11
votes
3answers
7k views

See if lat / long falls within a polygon using mysql

I have the created the table below CREATE TABLE geom (g GEOMETRY); and have inserted many rows, example below: INSERT INTO geom (g) VALUES(PolygonFromText('POLYGON(( 9.190586853 45.464518970, ...
16
votes
14answers
5k views

What is the quickest way to find the shortest cartesian distance between two polygons

I have 1 red polygon say and 50 randomly placed blue polygons - they are situated in geographical 2D space. What is the quickest/speediest algorithim to find the the shortest distance between a red ...