Displaying 2 results from an estimated 2 matches for "longlatlimit".
2009 Mar 12
3
Map using projection
...l be a blank space in
the bottom of plot (see case 2). I spent almost 2 days to figure out a
solution, but could not. Would you help me if you know what the problem is?
Regards,
Alireza
#################################################
#case 1
library(maps)
require("mapproj")
longlatLimit<-c(-107,-93,40,52)
par(plt=c(0,1,0,1),cex=1,cex.main=1) #Set plotting parameters
#map(projection="azequalarea",
type="n",xlim=longlatLimit[1:2],ylim=longlatLimit[3:4])
map(projection="azequalarea",
type="n",xlim=longlatLimit[1:2],ylim=longlatL...
2009 Mar 02
1
plotting on map
Hi list,
I want to plot state Texas using map function. I wrote the following code to
plot the grid boundary for Texas:
################################
library(maps)
require("mapproj")
longlatLimit<-c(-106.65, -93.53 , 25.93 , 36.49)
par(plt=c(0,1,0,1),cex=1,cex.main=1) #Set plotting parameters
map(projection="azequalarea",
type="n",xlim=longlatLimit[1:2],ylim=longlatLimit[3:4])
bound<-c(floor(.map.range[1]), ceiling(.map.range[2]),
floor(.map.range[3...