I am trying to calculate Elevation, Slope and Aspect using SRTM-DEM in 500m resolution. The SRTM-DEM coordinate system is in UTM and the resolution is 30m. How to get the SRTM resolution in 500m and calculate elevation, slope and aspect with the same extent.
I disaggregated my SRTM by a factor of 3 and then aggregated by a factor of 50 but it doesn't give me the same extent as my MODIS raster.
modis
#class : RasterLayer
#dimensions : 804, 1146, 921384 (nrow, ncol, ncell)
#resolution : 500, 500 (x, y)
#extent : 364000, 937000, 3693500, 4095500 (xmin, xmax, ymin, ymax)
srtm
#class : RasterLayer
#dimensions : 804, 1145, 920580 (nrow, ncol, ncell)
#resolution : 500, 500 (x, y)
#extent : 364486.3, 936986.3, 3693292, 4095292 (xmin, xmax, ymin, ymax)
How to solve this problem?