1
vote
1answer
25 views

Clipping rasters in R

I am building a map for the northeastern U.S.A. The map background needs to be either an altitude map or a mean annual temperature map. I have two rasters from Worldclim.org which give me these ...
0
votes
0answers
29 views

Use an external object as plotted size with maps and geom_point

I have working code that refers to a csv (mapdata) to plot two sets of data on top of a US map. I am interested in building in a user input that allows a user running the script to select which ...
3
votes
1answer
37 views

How would I plot borehole traces in 3d?

Borehole data contains the "collar" information: that's X,Y, and Z (Z is ground elevation, and Z=0 is some datum like mean sea level), and also borehole length in Z direction. How can I create a 3D ...
0
votes
2answers
83 views

How to convert .shp file into .csv in R?

I want to to convert two .shp files into one database that would allow me to draw the maps together. Also, is there a way to convert .shp files into .csv files? I want to be able to personalize and ...
5
votes
1answer
167 views

Plots on a map using ggplot2

An interesting ggplot2 challenge! I would like to produce a barplot for each location on a map using ggplot2, as was done by xingmowang with base graphics and a number of packages: ...
0
votes
0answers
51 views

Africa map heatpmap [closed]

I am looking for an R map of Africa and in particular Gabon that I could use with the map package or with ggplot2 and qplot.
5
votes
1answer
102 views

Highlighting specific countries (Ethiopia, Uganda, Kenya) using rworldmap library and map function

I am using this code using the package mapdata, however it only show the three countries I have selected, and I cannot see the rest of the world´s map boundaries. map("world", ...
5
votes
1answer
103 views

Updated world map for R “maps” package?

library(maps) 1> map.where(database="world",29.392089,53.592505) [1] "USSR" Hello?!? does anyone know how I can get an updated world map database to drive this function in the maps package? I ...
1
vote
1answer
89 views

R maps package colour fill for a country gives strange results

The following code gives very unexpected results. I'm trying to colour a few countries with different colours in a map of Asia, and the colors are all jumbled up. What am I doing wrong? ...
3
votes
1answer
150 views

Format the ggplot2 map

I´m trying to produce a worldmap using ggplot2 in R. I want to show GDP per capita from Brazilian States. There are 2 problems: In the center of Country have two labels aren't easy to read the ...
2
votes
1answer
193 views

R map: how do I fill the regions?

I'm plotting a map here and can't fill it right, I hope you can help. So what do I do Read the map and change projection: map<-readOGR(dsn="e:\\r\\OSM_adm_reg\\adm4_region (1)", ...
0
votes
0answers
129 views

How to utilize package ggplot2 to plot maps with R

I found the post here very interesting. However, my data is slightly different and therefore I need to make a few changes to make it work. Basically, I am stuck on the last part: autoplot(mp) + ...
1
vote
1answer
121 views

rgdal package installation

The issue here is not exactly how to plot maps through R, as I have found already a pretty nice example here, but rather how to make it work. In fact, I am unable to load library rgdal: ...
0
votes
0answers
89 views

Lightning density maps in R

I am trying to plot a cloud-to-ground lightning density map for Romania. The data set contains: date(year/month/dat), time(hh/mm/ss), latitude, and longitude for each lightning flash. The density maps ...
1
vote
1answer
298 views

how to display a projected map on an R::lattice::layerplot?

summary: I can display a lon-lat map on a lattice::layerplot, and I can display a Lambert conformal conic (LCC) map on a spam::image. How to display an LCC map on a lattice::layerplot? Examples of how ...
0
votes
0answers
32 views

Determine whether coordinates fall within geographic region [duplicate]

I'm attempting to discern whether a given lat/long coordinate falls within a particular US state. I have used the maps package to obtain lat/long coordinates for state borders. I suspect there is a ...
1
vote
2answers
89 views

When should I use geom_map?

I'm making a chloropleth map with added points in ggplot. So, following the last example of the geom_map help docs I came up with this: require(ggplot2) require(maps) set.seed(47) county_map <- ...
-1
votes
2answers
132 views

cross hatching in maps using R

I'd like to make a map in R of the continental U.S. (using the maps package), where one state is filled in in black (CA) and one state (TX) is filled in with cross-hatches or some other pattern. The ...
4
votes
2answers
665 views

Convert latitude and longitude coordinates to country name in R

I have a list of latitude and longitude coordinates, and wish to find out which country they all reside in. I modified an answer from this question about lat-long to US states, and have a working ...
2
votes
2answers
176 views

Find best matching overlapping polygons in R

I have two shapefiles that I have read into R using readOGR() as SpatialPolygonsDataFrame objects. Both are maps of New Zealand with different internal boundaries. One has about 70 polygons ...
2
votes
2answers
152 views

R maps package missing counties

I am attempting to make a heat map / choropleth / thematic plot of the USA by county using the R "maps" package. Unfortunately some counties seem to be missing from the database. library(maps) ...
7
votes
2answers
311 views

How to get the longitude and latitude coordinates from a city name and country in R?

I have a long list of city names and countries and I would like to plot them on a map. In order to do this I need the longitude and latitude information of each of the cities. My table is called ...
1
vote
1answer
91 views

how to add color to the points to denote the values of another variable

library(maps) map("state","California") points(map$x,map$y) I use the command above created a map with points that represent the houses location. how can I add colors to these points on the map to ...
2
votes
1answer
93 views

turn Google geocode output into map in R

I'm afraid I'm having some trouble doing what should be relatively easy. I'm trying to effectively duplicate the ggplot map from this question World Map - Plotting Circles, size of circle relevant to ...
2
votes
0answers
83 views

“good enough” location field mapping to geographic heatmap in R

I'm trying to create a heatmap of users' location in various world regions in R, but the dataset I'm working with contained a free text location field for users to fill on their own -- hence the ...
4
votes
1answer
154 views

Outline polygon border that has been removed due to NA's

I want to plot a shape file using ggplot2 in R. More specifically, I want to plot % white living in each block for several major cities. So far, I've worked with New Haven. The problem is that some ...
0
votes
1answer
66 views

R equivalent of “hold on” for plotting maps

I want to add different colors to different states in the US. However when I run all my map("state",."insert coloring condition"...) commands sequentially, I don't get an overlay plot, it just ...
1
vote
1answer
86 views

Plot timezones over the world map in R

Hi folks: could anyone give me some hints about plotting timezones grid using polygons over the world map in R? I use maps to get the world layout, but where to get coordinates of timezones polygons? ...
0
votes
1answer
164 views

how do I map (on a geographical map) data in R just given the US Zipcodes

for a school project I have to map some data on a geographical map in R. Therefore I've got some data containing the zipcode and many other information (just no more information on the state, county ...
3
votes
1answer
388 views

Add Points to Chloropleth Map in ggplot2

I'm looking at the following example from Hadley Wickham's ggplot2: library(ggplot2) library(maps) states<-map_data("state") arrests<-USArrests names(arrests)<-tolower(names(arrests)) ...
2
votes
2answers
116 views

maps of subregion in R

I am trying to plot geographical location on a map. I am using ggplot2 in combination with maps libraries. Everything is nice except for on region that is very crowded. I would like to make a zoom ...
-1
votes
1answer
179 views

r spatial mapping

I am trying to make some nice spatial maps in R. I am trying to understand how to upload the data in case you would like to have a look at them but I have not figured that out (I am sorry for that but ...
1
vote
2answers
101 views

Using the maps and ggplot2 package, can you associate latlong pairs to a state

As an example, suppose that I have the latlong pairs of every McDonald's restaurant in the US, and nothing else. Can I use the maps/ggplot2 packages to, i.e. put a circle at the center of each state ...
2
votes
2answers
826 views

How to create a world map in R with specific countries filled in?

I would like to use R to generate a very basic world map with a specific set of countries filled with a red colour to indicate that they are malaria endemic countries. I have a list of these ...
0
votes
1answer
99 views

R, maps, votos2011.rda

Attempting to follow the tutorial on creating maps with R by Oscar Perpiñán Lamigueiro but unfortunately cannot obtain votos2011.rda. The file won't load Does anyone know where I can obtain this file ...
2
votes
1answer
192 views

K-means algorithm variation with minimum measure of size

I'm looking for some algorithm such as k-means for grouping points on a map into a fixed number of groups, by distance. The number of groups has already been decided, but the trick part (at least for ...
2
votes
1answer
357 views

Facet_Wrap and Scale Axis using ggplot2, r

I wish to have multiple maps showing point values in Auckland, NZ. The problem is that I have a background shapefile (land) to add background detail to the map which means that the free scale x y ...
2
votes
1answer
290 views

Overlaying R county map onto a state map

R newbie here. If I first use map('state'), how can I then use map('county', ylim=..., xlim=...) but offset it like this: Right now, I am using imagemagick's composite -gravity southwest ... to ...
10
votes
1answer
1k views

Plotting interpolated data on map

I have survey data of species richness that was taken at various sites in the Chesapeake Bay, USA, and I would like to graphically present the data as a "heat map." I have a dataframe of lat/long ...
2
votes
3answers
3k views

R maps plotting longitude and latitude points

I have a map of the USA and a list of long, lat that I want to plot. Once I get this working, I also want to switch over to the "world" map. The map is generated, but no points appear on the map. ...
3
votes
2answers
711 views

How to specify countries/region while creating maps in R?

map("usa") by default displays a map without Alaska and Hawaii. map("world") has Antartica by default. Is there any way to say "include alaska", "exclude antartica" etc?
8
votes
2answers
881 views

Cartogram + choropleth map in R

I've been using ggplot2 lately to create a bunch of choropleths. I was wondering if it was possible to use ggplot2 to create a map similar to this (from WorldMapper): It's a choropleth where the ...
4
votes
2answers
1k views

Grid with choropleth maps in ggplot2

Using Hadley's great ggplot2 and his book (pp. 78-79), I am able to produce single choropleth map plots with ease, using code like this: states.df <- map_data("state") states.df = ...
1
vote
1answer
1k views

Using [R] maps package - colouring in specific nations on a world map

I'm trying to create a world map and color certain nations. Basically, I would like to highlight some countries in red and other countries in blue. If someone could help me generate the basic [R] ...
-2
votes
1answer
122 views

Drawing several countries ingnoring borders [closed]

I used the tips in here to draw the maps of several countries. Now I need to ignore the borders between some countries. . Any Suggestion.
2
votes
2answers
477 views

Combine counties in geographic data

I would like to represent multiple counties in TN state as a single region using a common color fill. I can do that with the code below: library(maps) map("state", "tennessee", fill = TRUE, ...
6
votes
1answer
436 views

R maps package - how to draw lines between countries?

In R, using maps package, and gcIntermediate function, how do I draw lines between two countries? It needs lat-long, but I'm not sure what lat-long should I give for countries (say I want to draw a ...
-1
votes
1answer
395 views

Legend label showing the same interval more than once

I'm making a shaded map in R. The legend create separate categories for zero and missing but it labels both of them "[0,0)" Any idea how to fix this? library(gpclib) library(maptools) # loads sp ...
2
votes
1answer
655 views

Fill continental areas in geographical maps created with R

I try to get into creating geographical maps using the maps-package in R. I'm not sure if this is the "package of choice". I tried to draw a map of the world with a bluish background, white ...
7
votes
1answer
1k views

Fixing maps library data for Pacific centred (0°-360° longitude) display

I'm plotting some points on a map of the world using the R maps package, something like: The command to draw the base map is: map("world", fill=TRUE, col="white", bg="gray", ylim=c(-60, 90), ...

1 2