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

  • SEARCH
  • Home
  • 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 7579783
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:45:25+00:00 2026-05-30T17:45:25+00:00

I was just wondering if anyone has a conversion table for the resolution of

  • 0

I was just wondering if anyone has a conversion table for the resolution of rasters in R. I would like to know what numbers like these refer to in meters:

resolution : 0.08333333, 0.08333333

resolution : 0.009398496, 0.009398496
resolution : 0.002349, 0.002349 = 250m (I think)

I would really like to know what resolution to set a raster object to make cell sizes 1km^2. I am using rasters that span the country of Australia.

Thanks in advance everyone.

Cheers,
Adam

  • 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-30T17:45:26+00:00Added an answer on May 30, 2026 at 5:45 pm

    It all depends on the units of your raster, and that depends on the projection. Rasters might not even be square grids in metres – they might be square in degrees which aren’t square in metres!

    1 degree longitude at the equator is 1/360 of the earth’s circumference. Near the north pole 1 degree is a much smaller distance, and at the pole its pretty much zero. Degrees of latitude however are constant.

    You could take the corner points of your raster, convert them to lat-long coordinates if not already, and then work out the great-circle distance between them (there’s an rdist function somewhere that does this I recall). However this won’t work if your raster spans the whole globe, since then your NW corner and your NE corner are at the same point… Ummm. Anyway, the answer is… 42.

    If you want to make 1km rasters of Australia then…. you need a coordinate system of Australia in kilometres. In the UK we have a system called the OSGB National Grid, which is close enough to a metric grid. Australia might be trickier because it is slightly bigger than the UK… So Australia seems to have a few grid systems. See here:

    http://www.spatialreference.org/ref/?search=AGD84

    So you might want to use the system that is in the middle of the country to avoid the worst distortions, then work out the bounds of Australia in lat-long, convert to epsg:20353 and create a raster based on that:

    In lat-long I reckon Australia is roughly:

    > xtll
             [,1]       [,2]
    [1,] 112.5162 -43.906900
    [2,] 155.8425  -7.585619
    

    make this into a SpatialPoints object:

    > xtll=SpatialPoints(xtll,CRS("+init=epsg:4326"))
    

    convert to that AGD84 in the middle of the country:

    > spTransform(xtll,CRS("+init=epsg:20353"))
    SpatialPoints:
         coords.x1 coords.x2
    [1,]  -1306200   4886041
    [2,]   2849956   9103124
    

    Make a raster extent object rounded to km:

    > ext = extent(-1306000,2850000,4886000,9103000)
    

    How many rows and columns do we need?

    > length(-1306:2850)
    [1] 4157
    > length(4886:9103)
    [1] 4218
    

    Create a raster:

    > r = raster(ext,ncol=4156,nrow=4217,crs="+init=epsg:20353")
    > r
    class       : RasterLayer 
    dimensions  : 4217, 4156, 17525852  (nrow, ncol, ncell)
    resolution  : 1000, 1000  (x, y)
    extent      : -1306000, 2850000, 4886000, 9103000  (xmin, xmax, ymin, ymax)
    coord. ref. : +init=epsg:20353 +proj=utm +zone=53 +south +ellps=aust_SA +units=m +no_defs 
    values      : none
    

    Note that the ncol and nrow values are one less than the values from the bounds – this would be a fencepost error to put those values in.

    See how my resolution is 1000? This is a 1km grid. The problem is that this is possibly going to be a bit distorted on the coasts. You could work out how distorted by converting to lat-long (epsg:4326), then to the proper AGD zone for points on the coast, and seeing how different they are. They might be very close, except for an offset.

    Anyway, nuff said.

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

Sidebar

Related Questions

Just wondering if anyone has any ideas on how we can style templates... Like
Just wondering if anyone has sucessfully submitted an app or know of an app
I was just wondering if anyone has implementing anything like the following for Android.
Wondering if anyone has a solution for this. I would like to present an
Just wondering if anyone has any favourite SQL references they to use when creating
Just wondering if anyone has some good resources for learning how to create new
I'm just wondering if anyone has had any problems having too many subscribers for
Just wondering if anyone else has spotted this: On some user's machines running our
Im just wondering if I am pushing JSON too far? and if anyone has
I've just started using Linq to SQL, and I'm wondering if anyone has any

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.