N = 100
LATS = c(7.593004, 25.926045)
LONS = c(268.1563 , 305)
lon=rnorm(N, mean=mean(LONS), sd=diff(LONS)/2 )
lat=rnorm(N, mean=mean(LATS), sd=diff(LATS)/2)
str1=runif(N,50,100)
dip1=runif(N,10, 80)
rake1=runif(N,5, 180)
dep=runif(N,1,15)
name=seq(from=1, to=length(lon), by=1)
Elat=NULL
Elon=NULL
yr = rep(2017, times=N)
jd = runif(N, min=1, max=365)
MEKS = list(lon=lon, lat=lat, str1=str1, dip1=dip1,
rake1=rake1, dep=dep, name=name, yr=yr, jd = jd)
PROJ = GEOmap::setPROJ(type=2, LAT0=mean(lat) , LON0=mean(lon) ) ## utm
XY = GEOmap::GLOB.XY(lat, lon, PROJ)
plot(range(XY$x), range(XY$y), type='n', asp=1)
## points(XY$x, XY$y)
ternfocgeo(MEKS , PROJ, PLOT=TRUE, icut = 3,
ndivs = 4, add=TRUE, RECT=TRUE)
points(XY$x, XY$y, pch=8, col="purple" )
################# next restrict the boxes to a specific region
plot(range(XY$x), range(XY$y), type='n', asp=1)
points(XY$x, XY$y)
ternfocgeo(MEKS , PROJ, PLOT=TRUE, icut = 3, ndivs = 5,
bbox=c(-2000,2000,-2000,2000) , add=TRUE, RECT=TRUE)
if (FALSE) {
##### this example shows a real application with a map
plot(x=range(IZ$x), y=range(IZ$y), type='n', asp=1, axes=FALSE, ann=FALSE)
image(x=IZ$x, y=IZ$y, z=(UZ), col=blues, add=TRUE)
image(x=IZ$x, y=IZ$y, z=(AZ), col=terrain.colors(100) , add=TRUE)
plotGEOmapXY(haiti.map,
LIM = c(Lon.range[1],Lat.range[1] ,
Lon.range[2] ,Lat.range[2]),
PROJ =PROJ, MAPstyle = 2,
MAPcol = 'black' , add=TRUE )
H = rectPERIM(JMAT$xo, JMAT$yo)
antipolygon(H$x ,H$y, col=grey(.85) , corner=1, pct=.4)
sqrTICXY(H , PROJ, side=c(1,2,3,4), LLgrid=TRUE, col=grey(.7) )
ternfocgeo(OLDCMT, PROJ, PLOT=TRUE, add=TRUE)
}
Run the code above in your browser using DataLab