Tagged Questions
2
votes
1answer
58 views
Remove intersect of one polygon from another in R
I am trying to remove the intersect from Poly2 onto Poly1. Below are the coords of the 2 polygons.
> coords1
[,1] [,2]
[1,] 992.0161 7462.531
[2,] 950.1962 7413.532
[3,] 902.3632 ...
1
vote
1answer
202 views
Intersection between two SpatialPolygonsDataFrame using gIntersection function in R
I want to select a subset of my map (a SpatialPolygonsDataFrame) to create a new vector map = part of the initial map included inside a given polygon (eventually, inside several polygons).
I have a ...
2
votes
2answers
206 views
How to single out country data from a world data map?
Say that i have two "data sources";
A global map of average wind speeds,
A shape file (or similar information) of all country borders in the world.
How do i combine these two sources and extract ...
3
votes
0answers
126 views
Rgeos drops associated values when intersecting polygons
I am trying to intersect two SpatialPolygonsDataFrames and get a SpatialPolygonsDataFrame as the result. Unfortunately, using the gIntersection function from rgeos (which works impressively quickly ...
4
votes
2answers
179 views
No intersection found between polygons I know intersect!
I'm using two geographies: one is made up of small areas (about 2200), the other large areas (about 70). Both cover all of Australia, and the small areas are not necessarily nested inside large areas. ...