1
|
# R code to plot latitudinal profiles of mean elevation, along with both
|
2
|
# RMSE and correlation coefficients comparing fused layers with both the
|
3
|
# raw ASTER and with the Canada DEM
|
4
|
#
|
5
|
# Jim Regetz
|
6
|
# NCEAS
|
7
|
# Created on 08-Jun-2011
|
8
|
|
9
|
library(raster)
|
10
|
|
11
|
datadir <- "/home/regetz/media/temp/terrain/dem"
|
12
|
|
13
|
# load elevation rasters
|
14
|
d.aster <- raster(file.path(datadir, "aster_300straddle.tif"))
|
15
|
d.srtm <- raster(file.path(datadir, "srtm_150below.tif"))
|
16
|
d.uncor <- raster(file.path(datadir, "fused_300straddle.tif"))
|
17
|
d.enblend <- raster(file.path(datadir, "fused_300straddle_enblend.tif"))
|
18
|
d.bg <- raster(file.path(datadir, "fused_300straddle_blendgau.tif"))
|
19
|
d.can <- raster(file.path(datadir, "cdem_300straddle.tif"))
|
20
|
|
21
|
# extract raster latitudes for later
|
22
|
lats300 <- yFromRow(d.aster, 1:nrow(d.aster))
|
23
|
lats150 <- yFromRow(d.srtm, 1:nrow(d.srtm))
|
24
|
|
25
|
# initialize output pdf device driver
|
26
|
pdf("elevation-assessment.pdf", height=8, width=11.5)
|
27
|
|
28
|
|
29
|
#
|
30
|
# plot latitudinal profiles of mean elevation
|
31
|
#
|
32
|
|
33
|
par(mfrow=c(2,2), omi=c(1,1,1,1))
|
34
|
|
35
|
ylim <- c(540, 575)
|
36
|
|
37
|
plot(lats300, rowMeans(as.matrix(d.can), na.rm=TRUE), type="l",
|
38
|
xlab="Latitude", ylab="Mean elevation", ylim=ylim)
|
39
|
text(min(lats300), min(ylim)+0.5, pos=4, font=3, labels="Original DEMs")
|
40
|
lines(lats300, rowMeans(as.matrix(d.aster), na.rm=TRUE), col="blue")
|
41
|
lines(lats150, rowMeans(as.matrix(d.srtm), na.rm=TRUE), col="red")
|
42
|
legend("bottomright", legend=c("SRTM", "CDED", "ASTER"), col=c("red",
|
43
|
"black", "blue"), lty=c(1, 1), bty="n")
|
44
|
abline(v=60, col="red", lty=2)
|
45
|
mtext(expression(paste("Latitudinal profiles of mean elevation (",
|
46
|
136*degree, "W to ", 96*degree, "W)")), adj=0, line=2, font=2)
|
47
|
|
48
|
plot(lats300, rowMeans(as.matrix(d.uncor), na.rm=TRUE), type="l",
|
49
|
xlab="Latitude", ylab="Mean elevation", ylim=ylim)
|
50
|
text(min(lats300), min(ylim)+0.5, pos=4, font=3, labels="simple fuse")
|
51
|
abline(v=60, col="red", lty=2)
|
52
|
|
53
|
plot(lats300, rowMeans(as.matrix(d.enblend), na.rm=TRUE), type="l",
|
54
|
xlab="Latitude", ylab="Mean elevation", ylim=ylim)
|
55
|
text(min(lats300), min(ylim)+0.5, pos=4, font=3, labels="multires spline")
|
56
|
abline(v=60, col="red", lty=2)
|
57
|
|
58
|
plot(lats300, rowMeans(as.matrix(d.bg), na.rm=TRUE), type="l",
|
59
|
xlab="Latitude", ylab="Mean elevation", ylim=ylim)
|
60
|
text(min(lats300), min(ylim)+0.5, pos=4, font=3, labels="gaussian blend")
|
61
|
abline(v=60, col="red", lty=2)
|
62
|
|
63
|
|
64
|
#
|
65
|
# plot latitudinal profiles of RMSE
|
66
|
#
|
67
|
|
68
|
# simple helper function to calculate row-wise RMSEs
|
69
|
rmse <- function(r1, r2, na.rm=TRUE, use) {
|
70
|
diffs <- abs(as.matrix(r1) - as.matrix(r2))
|
71
|
if (!missing(use)) diffs[!use] <- NA
|
72
|
sqrt(rowMeans(diffs^2, na.rm=na.rm))
|
73
|
}
|
74
|
|
75
|
par(mfrow=c(2,3), omi=c(1,1,1,1))
|
76
|
|
77
|
ylim <- c(0, 35)
|
78
|
|
79
|
# ...with respect to ASTER
|
80
|
plot(lats300, rmse(d.uncor, d.aster), type="l", xlab="Latitude",
|
81
|
ylab="RMSE", ylim=ylim)
|
82
|
lines(lats150, rmse(crop(d.uncor, extent(d.srtm)), d.srtm), col="blue")
|
83
|
legend("topright", legend=c("ASTER", "SRTM"), col=c("black", "blue"),
|
84
|
lty=c(1, 1), bty="n")
|
85
|
text(min(lats300), max(ylim)-1, pos=4, font=3, labels="simple fuse")
|
86
|
abline(v=60, col="red", lty=2)
|
87
|
mtext(expression(paste(
|
88
|
"Elevation discrepancies with respect to separate ASTER/SRTM components (",
|
89
|
136*degree, "W to ", 96*degree, "W)")), adj=0, line=2, font=2)
|
90
|
|
91
|
plot(lats300, rmse(d.enblend, d.aster), type="l", xlab="Latitude",
|
92
|
ylab="RMSE", ylim=ylim)
|
93
|
lines(lats150, rmse(crop(d.enblend, extent(d.srtm)), d.srtm), col="blue")
|
94
|
legend("topright", legend=c("ASTER", "SRTM"), col=c("black", "blue"),
|
95
|
lty=c(1, 1), bty="n")
|
96
|
text(min(lats300), max(ylim)-1, pos=4, font=3, labels="multires spline")
|
97
|
abline(v=60, col="red", lty=2)
|
98
|
|
99
|
plot(lats300, rmse(d.bg, d.aster), type="l", xlab="Latitude",
|
100
|
ylab="RMSE", ylim=ylim)
|
101
|
lines(lats150, rmse(crop(d.bg, extent(d.srtm)), d.srtm), col="blue")
|
102
|
legend("topright", legend=c("ASTER", "SRTM"), col=c("black", "blue"),
|
103
|
lty=c(1, 1), bty="n")
|
104
|
text(min(lats300), max(ylim)-1, pos=4, font=3, labels="gaussian blend")
|
105
|
abline(v=60, col="red", lty=2)
|
106
|
|
107
|
# ...with respect to CDEM
|
108
|
plot(lats300, rmse(d.uncor, d.can), type="l", xlab="Latitude",
|
109
|
ylab="RMSE", ylim=ylim)
|
110
|
text(min(lats300), max(ylim)-1, pos=4, font=3, labels="simple fuse")
|
111
|
abline(v=60, col="red", lty=2)
|
112
|
mtext(expression(paste(
|
113
|
"Elevation discrepancies with respect to Canada DEM (",
|
114
|
136*degree, "W to ", 96*degree, "W)")), adj=0, line=2, font=2)
|
115
|
|
116
|
plot(lats300, rmse(d.enblend, d.can), type="l", xlab="Latitude",
|
117
|
ylab="RMSE", ylim=ylim)
|
118
|
text(min(lats300), max(ylim)-1, pos=4, font=3, labels="multires spline")
|
119
|
abline(v=60, col="red", lty=2)
|
120
|
|
121
|
plot(lats300, rmse(d.bg, d.can), type="l", xlab="Latitude",
|
122
|
ylab="RMSE", ylim=ylim)
|
123
|
text(min(lats300), max(ylim)-1, pos=4, font=3, labels="gaussian blend")
|
124
|
abline(v=60, col="red", lty=2)
|
125
|
|
126
|
|
127
|
#
|
128
|
# plot latitudinal profiles of correlation coefficients
|
129
|
#
|
130
|
|
131
|
# simple helper function to calculate row-wise correlation coefficients
|
132
|
corByLat <- function(r1, r2, rows) {
|
133
|
if (missing(rows)) {
|
134
|
rows <- 1:nrow(r1)
|
135
|
}
|
136
|
m1 <- as.matrix(r1)
|
137
|
m2 <- as.matrix(r2)
|
138
|
sapply(rows, function(row) cor(m1[row,], m2[row,],
|
139
|
use="pairwise.complete.obs"))
|
140
|
}
|
141
|
|
142
|
par(mfrow=c(2,3), omi=c(1,1,1,1))
|
143
|
|
144
|
ylim <- c(0.99, 1)
|
145
|
|
146
|
# ...with respect to ASTER
|
147
|
plot(lats300, corByLat(d.uncor, d.aster), type="l", xlab="Latitude",
|
148
|
ylab="Correlation", ylim=ylim)
|
149
|
lines(lats150, corByLat(crop(d.uncor, extent(d.srtm)), d.srtm), col="blue")
|
150
|
legend("bottomright", legend=c("ASTER", "SRTM"), col=c("black", "blue"),
|
151
|
lty=c(1, 1), bty="n")
|
152
|
text(min(lats300), min(ylim), pos=4, font=3, labels="simple fuse")
|
153
|
abline(v=60, col="red", lty=2)
|
154
|
mtext(expression(paste(
|
155
|
"Elevation correlations with respect to separate ASTER/SRTM components (",
|
156
|
136*degree, "W to ", 96*degree, "W)")), adj=0, line=2, font=2)
|
157
|
|
158
|
plot(lats300, corByLat(d.enblend, d.aster), type="l", xlab="Latitude",
|
159
|
ylab="Correlation", ylim=ylim)
|
160
|
lines(lats150, corByLat(crop(d.enblend, extent(d.srtm)), d.srtm), col="blue")
|
161
|
legend("bottomright", legend=c("ASTER", "SRTM"), col=c("black", "blue"),
|
162
|
lty=c(1, 1), bty="n")
|
163
|
text(min(lats300), min(ylim), pos=4, font=3, labels="multires spline")
|
164
|
abline(v=60, col="red", lty=2)
|
165
|
|
166
|
plot(lats300, corByLat(d.bg, d.aster), type="l", xlab="Latitude",
|
167
|
ylab="Correlation", ylim=ylim)
|
168
|
lines(lats150, corByLat(crop(d.bg, extent(d.srtm)), d.srtm), col="blue")
|
169
|
legend("bottomright", legend=c("ASTER", "SRTM"), col=c("black", "blue"),
|
170
|
lty=c(1, 1), bty="n")
|
171
|
text(min(lats300), min(ylim), pos=4, font=3, labels="gaussian blend")
|
172
|
abline(v=60, col="red", lty=2)
|
173
|
|
174
|
# ...with respect to CDEM
|
175
|
plot(lats300, corByLat(d.uncor, d.can), type="l", xlab="Latitude",
|
176
|
ylab="Correlation", ylim=ylim)
|
177
|
text(min(lats300), min(ylim), pos=4, font=3, labels="simple fuse")
|
178
|
abline(v=60, col="red", lty=2)
|
179
|
mtext(expression(paste(
|
180
|
"Elevation correlations with respect to Canada DEM (",
|
181
|
136*degree, "W to ", 96*degree, "W)")), adj=0, line=2, font=2)
|
182
|
|
183
|
plot(lats300, corByLat(d.enblend, d.can), type="l", xlab="Latitude",
|
184
|
ylab="Correlation", ylim=ylim)
|
185
|
text(min(lats300), min(ylim), pos=4, font=3, labels="multires spline")
|
186
|
abline(v=60, col="red", lty=2)
|
187
|
|
188
|
plot(lats300, corByLat(d.bg, d.can), type="l", xlab="Latitude",
|
189
|
ylab="Correlation", ylim=ylim)
|
190
|
text(min(lats300), min(ylim), pos=4, font=3, labels="gaussian blend")
|
191
|
abline(v=60, col="red", lty=2)
|
192
|
|
193
|
# close pdf device driver
|
194
|
dev.off()
|
195
|
|