1
vote
1answer
69 views

Distance of point feature to nearest polygon in R

I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
5
votes
1answer
74 views

Setting an image as the colour of a polygon

I borrowed this code from statmethods[dot]net. The result is a coloured area under a normal distribution. mean=100; sd=15 lb=80; ub=120 x <- seq(-4,4,length=100)*sd + mean hx <- ...
1
vote
1answer
65 views

Counting polygons in shapefile

So I have multiple species ranges which look like the following (colored blue for example) This one runs east to west across Africa: I can get the total area by using gArea in the rgeos package. ...
0
votes
1answer
41 views

Overlay SpatialPointsDataFrame and a SpatialPolygonsDataFrame when the number of rows is unequal [closed]

I am wondering if this is possible in R. I have a SpatialPointsDataFrame, which includes points that have attributes assigned to them. I want to overlay this SpatialPointsDataFrame with a ...
0
votes
1answer
33 views

What does “region” and “polygon” mean in rasterize function from raster library in R?

When I use the function rasterize from the raster library in R, this message appears in the console: "Found 6085 region(s) and 6409 polygon(s)". There is 6085 polygons in the shapefile, so I was ...
2
votes
1answer
97 views

Mapping Census data w/ ggplot2 - Haphazard poly constructs (Now w/ Map!)

First, I apologize for the title, but I am not entirely sure how to describe what is happening with my map (hence the image inclusion). I am new to mapping with ggplot2, and for my first 'out of ...
2
votes
1answer
57 views

filling color gridient under normal curve in X direction in r

I am trying to shade under curve (contrast to y direction in this post). Just the following is hypothesis of filling direction. curve(dnorm(x,0,1),xlim=c(-3,3),main='Standard Normal') I am trying ...
3
votes
2answers
101 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 ...
3
votes
1answer
41 views

Why is there a slim gap in polygon function?

There is a slim gap in the graph after you run the code. x = seq(0, 1, by=0.01) y1=x y2=x^2 plot(x, y1,type="l") lines(x,y2,type="l",col="red") xx1<-c(0,x[x<1 & x>0 ],1,x[x<1 & ...
1
vote
0answers
58 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
1answer
43 views

How to paint the region green? [duplicate]

Please see the attachment ,i want to paint the region which covers R1 to be pink, How can i paint it with polygon? x = seq(-0.25, 2, by=0.01) y1=x y2=x^2 plot(x, ...
-1
votes
1answer
253 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 ...
0
votes
2answers
453 views

extract value from raster stack from spatialpolygondataframe

I have a raster stack with 27 rasters in it. I have 27 corresponding polygons in a spatial polygon data frame. I want to take polygon[i] overlay it on raster[i], extract and sum the values from ...
10
votes
1answer
178 views

Drawing outlines around multiple geom_point groups with ggplot

I currrently have the code included below to draw this: What I am trying to do is get the outline for each of the groups to follow all of the points in each group - rather than skip some of them as ...
3
votes
1answer
129 views

Shaded polygons in R with linear constraints

I have 6 linear constraints. I know how to find solution to this problem both by hand and via r. I am looking for an easy way to obtain illustration for a feasible region. I tried ggplot2 to do so ...
1
vote
1answer
639 views

Transparency with polygon command

I used the polygon command in R which created an area in the plot. However, the values in this area are not shown whereas the main aim is to monitor these values. Does anyone know how to handle this? ...
0
votes
1answer
190 views

Export a polygon from an R plot as a shapefile

I have been trying to export the content of a plot (lines/polygons) as a layer/shapefile that I can open in ArcMap. These are some of the libraries that I have been using, library(shapefiles) ...
0
votes
1answer
88 views

How to create cohesive Spatial Pixels from Spatial Points Dataset

I have a Spatial Point DF spo (covering an irregular shaped area of interest). The data are not on a regular grid due to crs transformation. My goal is a raster with predefined resolution and extent ...
5
votes
1answer
350 views

Polygons nicely cropping ggplot2/ggmap at different zoom levels

I am playing with a spatial data set (mostly polygons over an area of a city) and I would like to produce different views, based on different levels of zoom. Everything is fine when I have the plot ...
1
vote
1answer
240 views

plotting land with hole using ggplot2

I have asked about the same issue from here and here, but still can't get my problem solved. I think I need to bring the whole problem and ask for help, rather than breaking it down into small parts. ...
2
votes
2answers
223 views

geom_polygon with multiple hole

I refer to the answer for this question and have additional question. I have modify the code as below: library(ggplot2) ids <- letters[1:2] # IDs and values to use for fill colour values <- ...
1
vote
1answer
97 views

loop for color and cordinate matrix objects for polygon plotting in r

Here are polygon coordinates: # data greenM <-matrix(c(5,5,95,45,5,65,5,45,65,5,5,95),nrow=4,byrow=TRUE) blueM <-matrix(c(35,15,65,35,45,35,5,75,35,5,45,65,35,15,65), nrow=5,byrow=TRUE) ...
1
vote
1answer
63 views

R: Plot ARC/INFO Generate File

I have an ARC/INFO generate file whose contents look like: 3594 -124.049541 44.429077 -123.381222 44.530192 -123.479913 44.625517 -123.578917 44.720704 -123.678234 44.815755 -123.777866 ...
2
votes
1answer
240 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, ...
3
votes
2answers
621 views

How to calculate the area of polygon overlap in R?

Does anyone know how to calculate the area in common between 2 or more polygons in R? I would like to have the output of such a calculation be the coordinates of a new polygon for that area of ...
0
votes
1answer
295 views

r plot for polygon graph

If anyone can tell me how to draw this kind of graph in R? http://pharmrev.aspetjournals.org/content/58/3/621/F9.large.jpg The souce code or r package is what I want. my original data is like this: A ...
4
votes
1answer
1k views

How to create thiessen polygons from points using R packages?

I have multiple sets of points (for different years ~20) I want to generate thiessen polygons for each set of points using r spatial packages. I know this can be done using GIS but as i want a ...
1
vote
1answer
643 views

Extract raster values of particular polygons of a SpatialPolygonsDataFrame (indexation)

I have a SpatialPolygonsDataFrame with 120 Polygons and some associated data. Now I’d like to extract the mean of the values on a raster within each polygon separately. I succeded in plotting ...
1
vote
3answers
544 views

How do I generate a grid of coordinates within specified polygons in R?

I have a list of two-dimensional polygons defined as two-column matrices of x and y coordinates in R. They completely fill a square area and are mutually exclusive. I want to use these polygon ...
7
votes
2answers
456 views

Can one use polygon() or equivalent in lattice and ggplot2 plots?

Is it possible to annotate lattice (or ggplot2) figures with elements created with polygon() (or elements created with a similar function) from the graphics library? I'm not too familiar with either ...
5
votes
1answer
2k views

Change colour scheme for ggplot geom_polygon in R

I'm creating a map using the maps library and ggplot's geom_polygon. I'd simply like to change the default blue, red, purple colour scheme to something else. I'm extremely new to ggplot so please ...
4
votes
1answer
408 views

How to cut brick using polygon?

I have a brick file of the bioclim variables, the brick was merged from four 30sec tile brick, so it is a little bit large. I would like to get the brick file of my research area by cutting it using a ...
7
votes
3answers
1k views

How to attach a simple data.frame to a spatialpolygondataframe in R?

I have (again) a problem with combining data frames in R. But this time, one is a spatial.polygon.data.frame(SPDF) and the other one is usual data.frame (DF). The SPDF has around 1000 rows the DF ...
1
vote
1answer
666 views

{R grid}: how to create a polygon half filled with color?

(This question might be too difficult, and maybe not worth the hassle to solve - however, if there is an easy solution - I would be curious to know) Let's say I create an image (using the grid ...
4
votes
1answer
980 views

Point of latitude and longitude inside a complex spherical polygon

Question What R package has a function that can determine if a coordinate is within a closed, complex spherical polygon (i.e., a point inside a polygon on Earth's surface)? Related Links JPL: ...