Tagged Questions
0
votes
0answers
44 views
polygon/raster intersection artifacts
I'm intesecting a polygon with a raster using PostGIS > 2.0. The outer boundary of the polygon is formed by the convex hull of polygons (building outlines plus safety margin) and the inner rings are ...
0
votes
0answers
37 views
Slicing / Cutting a Polygon / Polygon List based on another geometry
I currently use GeoDjango (GEOS, GDAL, PROJ4), I have rather medium set of polygon data (buildings).
To streamline them to a client efficiently (client has a limited viewport) I only want to send the ...
2
votes
1answer
65 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
0answers
27 views
Suggestions for vector format for polygons
I am using two polygon tables in postgis (A and B ).
I need to make a vector file that incorporates information of the overlapped polygons B intersecting each polygon on (A).
I can make a single ...
3
votes
0answers
137 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 ...
-2
votes
1answer
195 views
Postgis error on select all intersetcs of a polygon [closed]
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
0answers
358 views
cant find point/polygon intersect using qgis (windows only)
below i describe the method i am using.
i have 2 machines: 1 ubuntu linux, qgis 1.4 - intersection works
2 WIN xp, qgis 1.8 - intersection dows not work
hopefully, someone will ...
1
vote
1answer
146 views
How to identify Polygon within another Polygon layer
I have two polygons files. The first one has several smaller polygons within it eg.a shapefile with all US states, the other polygon file has a single polygon eg. a river basin. I am trying to get all ...
1
vote
2answers
249 views
count features in polygon shapefile A that fall within each feature of polygon shapefile B
I have two polygon shapefiles, each of which contain multiple (possibly overlapping) polygons.
Is there some way, using GRASS, to calculate the number of polygons belonging to shapefile A that fall ...
3
votes
0answers
222 views
How to get all intersections between two simple polygons in O(n+k)? [closed]
Can someone help with a following problem: report all intersections between two simple polygons in O(n+k) where n - is a total number of polygon edges and k - is number of intersections. As a result - ...
2
votes
1answer
1k views
Create point in intersections of two layers
I have two layers. One of them is 'Road_line' and another one is 'forest_shape'.
I want to create a point layer that has points in intersection of that layers. I couldn't find any tools for it.
Could ...
4
votes
1answer
2k views
can I extract overlap of polygons within the same layer?
I am trying to extract the overlap of polygons that are within the same layer in 10. The layer came from a buffered street centerline and I'm trying to extract and delete the intersections from the ...
12
votes
5answers
4k views
How to use ST_Intersection?
Here's a quick summary about what I'm trying to do: I have 3 tables in Postgres, 'a' and 'b', each have a Polygon column, and 'c' has a Point column. What I'm trying to do here is to get the ...
3
votes
2answers
2k views
Measure the area of a polygon resulting from the intersection of two other polygons?
How can I measure the area of a polygon resulting from the intersection of two other polygons? If I use the measure tool or open the attribute table for the resulting polygon, it shows me the areas of ...
5
votes
7answers
2k views
Intersection algorithm that correctly handles the 180° meridian and poles?
Is there a well known intersection algorithm that correctly handles 180 meridian and poles?
For example, let's say we have a list of latitude and longitude values that represent Antarctica. Let's ...
16
votes
4answers
4k views
Separate polygons based on intersection using PostGIS
I have a PostGIS table of polygons where some intersect with one another. This is what I'm trying to do:
For a given polygon selected by id, give me all of the polygons that intersect. Basically, ...