Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7503013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:04:34+00:00 2026-05-29T21:04:34+00:00

How can I plot a raster object behind a shapefile object? Both plot fine

  • 0

How can I plot a “raster” object behind a shapefile object? Both plot fine on their own but the points don’t plot over the raster:

require(rgdal)
require(maptools)
require(raster)

myproj = "+proj=utm +zone=12 +north +ellps=WGS84 +units=m"
shp = readShapeSpatial(fn.shp, proj4string = CRS(myproj))
ras = raster(fn.tif)

plot(ras)
plot(shp, bg="transparent", add=TRUE)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:04:35+00:00Added an answer on May 29, 2026 at 9:04 pm

    Overplotting raster plots with points, lines, and polygons should work just fine, as the following example shows.

    My best guess would be that the Spatial* objects you are attempting to plot on top of the raster fall outside of the region being plotted. Have you checked that both the raster and Spatial* objects are in the same CRS, and (assuming they are) that the bounding boxes overlap? (i.e. try bbox(shp) and bbox(ras), and compare the results).

    library(rgdal)
    library(raster)
    # Create a raster
    ras <- raster(ncols=36, nrows=18)
    ras[] <- runif(ncell(ras))
    # Create a SpatialPoints object
    shpPts <- spsample(Spatial(bbox=bbox(ras)), 20, type="random")
    # Create a SpatialPolygons object
    p1 <- rbind(c(-10,0), c(140,60), c(160,0), c(140,-55), c(-10,0))
    shpPolys <- SpatialPolygons( list(Polygons(list(Polygon(p1)), 1)))
    
    # Plot them, one layer after another
    plot(ras)
    plot(shpPts, pch=16, col="red", add=TRUE)
    plot(shpPolys, col="yellow", add=TRUE)
    

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can plot overlay markers on a map easily, but the requirements for this
When plotting only the legend (of a raster object - a colorbar): require(raster) r
i don't get it. i can plot one point successfully with the BalloonItemizedOverlay, however,
How can I improve the legend of spatial raster map plot using ggplot when
If I have a file of several data points. How can I plot a
How can I add a newline to a plot's label (e.g. xlabel or ylabel)
I heard today that Maxima can do the country plot by contour_plot in Sage.
I can plot the curve corresponding to an implicit equation: ContourPlot[x^2 + (2 y)^2
I am trying to create a Google Map where the user can plot the
I'm wondering if anyone knows of a simple javascript graphing library that can plot,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.