-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rhistory
307 lines (307 loc) · 8 KB
/
.Rhistory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
devtools::document()
library(corekit)
summa(1,2,3)
?sf::st_buffer
library(units)
?as_units
radius <- set_units(radius, "km")
radius <- 1
radius <- set_units(radius, "km")
radius
longlat <- c(10,5)
buffer <- longlat %>%
sf::st_point %>%
sf::st_buffer(radius) %>%
sf::as_Spatial()
library(dplyr)
buffer <- longlat %>%
sf::st_point %>%
sf::st_buffer(radius) %>%
sf::as_Spatial()
buffer <- longlat %>%
sf::st_point() %>%
sf::st_buffer(radius) %>%
sf::as_Spatial()
buffer <- longlat %>%
sf::st_point() %>%
sf::st_set_crs(4326) %>%
sf::st_buffer(radius) %>%
sf::as_Spatial()
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_buffer(radius) %>%
sf::as_Spatial()
path_to <- "../Visual-CORE/shan_state_data/resource potential/"
wind <- raster::brick(paste0(path_to,"wind.tif"))
wind <- raster::brick(paste0(path_to,"wind.tif"))
wind
solar <- raster::brick(paste0(path_to,"solar.tif"))
radius <- set_units(radius, "km")
longlat
longlat %>%
sf::st_point()
longlat %>%
sf::st_point() %>%
sf::st_sfc()
longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326)
longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_buffer(radius)
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
buffer
plot(buffer)
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326)
plot(buffer)
buffer
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
wind_vals <- raster::extract(wind, buffer)
wind_vals
wind
?Extract
library(raster)
?extract
buffer
longlat <- c(21,98)
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326)
longlat
longlat <- c(98,21)
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
wind_vals <- raster::extract(wind, buffer)
wind_vals
plot(wind)
plot(wind[[1]])
plot(buffer, add=TRUE)
solar_vals <- raster::extract(solar, buffer)
solar_vals
wind_vals <- colMeans(wind_wals, na.rm = TRUE)
solar_vals <- colMeans(solar_vals, na.rm = TRUE)
wind_vals <- colMeans(wind_vals, na.rm = TRUE)
wind_vals
wind_vals <- raster::extract(wind, buffer)
wind_vals <- colMeans(wind_vals, na.rm = TRUE)
wind_vals
wind_vals <- raster::extract(wind, buffer)
wind_vals
solar_vals <- raster::extract(solar, buffer)
solar_vals <- colMeans(solar_vals, na.rm = TRUE)
solar_vals
wind_vals <- colMeans(wind_vals[[1]], na.rm = TRUE)
solar_vals <- colMeans(solar_vals[[1]], na.rm = TRUE)
wind_vals
solar_vals
output <- cbind(wind_vals, solar_vals)
output
output <- cbind(Wind = wind_vals, Solar = solar_vals)
output
rownames(output) <- NULL
output
return(output)
?sf::st_buffer
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius)
buffer
radius
radius <- 2.5
radius <- set_units(radius, "km")
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
wind_vals <- raster::extract(wind, buffer)
wind_vals <- colMeans(wind_vals[[1]], na.rm = TRUE)
solar_vals <- raster::extract(solar, buffer)
solar_vals <- colMeans(solar_vals[[1]], na.rm = TRUE)
output <- cbind(Wind = wind_vals, Solar = solar_vals)
rownames(output) <- NULL
output
wind_vals <- raster::extract(wind, buffer)
wind_vals <- colMeans(wind_vals[[1]], na.rm = TRUE)
solar_vals <- raster::extract(solar, buffer)
solar_vals
library(corekit)
get_resources(c(90,21),1,"inst/www/data/wind_potential.tif","inst/www/data/solar_potential_kwhperkwp.tif")
library(corekit)
get_resources(c(90,21),1,"inst/www/data/wind_potential.tif","inst/www/data/solar_potential_kwhperkwp.tif")
w <-"inst/www/data/wind_potential.tif"
get_resources(c(97,21),1,"inst/www/data/wind_potential.tif","inst/www/data/solar_potential_kwhperkwp.tif")
s <- "inst/www/data/solar_potential_kwhperkwp.tif"
path_to_solar <- "inst/www/data/solar_potential_kwhperkwp.tif"
path_to_wind <-"inst/www/data/wind_potential.tif"
longlat <- c(97,21)
radius <- 2.5
wind <- raster::brick(path_to_wind)
solar <- raster::brick(path_to_solar)
radius <- units::set_units(radius, "km")
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
library(dplyr)
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
wind_vals <- raster::extract(wind, buffer)
wind_vals <- colMeans(wind_vals, na.rm = TRUE)
wind_vals
longlat <- c(98,21)
wind <- raster::brick(path_to_wind)
solar <- raster::brick(path_to_solar)
radius <- units::set_units(radius, "km")
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
wind_vals <- raster::extract(wind, buffer)
wind_vals
plot(wnd)
plot(wind)
wind
library(raster)
plot(wind)
library(sp)
plot(wind[[1]])
plot(buffer, add=TRUE)
longlat<-c(97,20.5)
wind <- raster::brick(path_to_wind)
solar <- raster::brick(path_to_solar)
radius <- units::set_units(radius, "km")
buffer <- longlat %>%
sf::st_point() %>%
sf::st_sfc() %>%
sf::st_set_crs(4326) %>%
sf::st_transform(32646) %>%
sf::st_buffer(radius) %>%
sf::st_transform(4326) %>%
sf::as_Spatial()
wind_vals <- raster::extract(wind, buffer)
wind_vals
wind_vals <- colMeans(wind_vals, na.rm = TRUE)
wind_vals <- colMeans(wind_vals, na.rm = TRUE)
wind_vals <- colMeans(wind_vals[[1]], na.rm = TRUE)
solar_vals <- raster::extract(solar, buffer)
solar_vals <- colMeans(solar_vals[[1]], na.rm = TRUE)
output <- cbind(Wind = wind_vals, Solar = solar_vals)
rownames(output) <- NULL
output
library(corekit)
library(opencpu)
ocpu_start_server()
get_resources(c(97,21),1,"inst/www/data/wind_potential.tif","inst/www/data/solar_potential_kwhperkwp.tif")
ocpu_start_server()
wind_name<- "wind_potential.tif"
wind <- raster::brick(system.file(wind_name, package="corekit"))
library(corekit)
wind <- raster::brick(system.file(wind_name, package="corekit"))
system.file(wind_name, package="corekit")
wind_name
wind <- raster::brick(system.file("extata", wind_name, package="corekit"))
system.file("extata", wind_name, package="corekit")
wind_name
system.file(package="corekit")
system.file("extdata","package="corekit")
system.file("extdata",package="corekit")
system.file("extdata",package="corekit", "wind_potential.tif")
wind <- raster::brick(system.file("extata", package="corekit", wind_name))
system.file("extata", package="corekit", wind_name)
wind <- raster::brick(system.file("extata",
package="corekit",
"wind_potential.tif"))
system.file("extata",
package="corekit",
"wind_potential.tif")
system.file("extdata",package="corekit", "wind_potential.tif")
wind <- raster::brick(system.file("extdata",package="corekit", "wind_potential.tif"))
solar <- raster::brick(system.file("extdata",package="corekit", "solar_potential_kwhperkwp.tif"))
library(corekit)
library(opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()
install.packages(c("opencpu","raster","dplyr","sf","units"), dependencies=TRUE)
library(corekit)
library(opencpu)
ocpu_start_server()
library opencpu
library (opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()
library(opencpu)
ocpu_start_server()