Displaying 1 result from an estimated 1 matches for "phy_coastline_plus_ssi_so".
2012 Aug 08
1
map axis on projected shapefiles
...4e+05?W, 3e+05?W,...,
and I cant seem to get map.grid to work.
Does anyone know why this would happen or what I have done wrong?
#Code is
shelfline <- readOGR(dsn="C:\\ArcGIS\\phy_bathy_contours.shp", layer =
"phy_bathy_contours")
world <- readOGR(dsn="C:\\ArcGIS\\phy_coastline_plus_ssi_so.shp", layer =
"phy_coastline_plus_ssi_so")
plot(shelfline, axes=T,xlab=expression("Longitude"^o),
ylab=expression("Latitude"^o), yaxt="n", xaxt="n")
plot(world, col="lightslategray", add=T)
#attempts to alter axes
degAxis(1)
map.gri...