-
Notifications
You must be signed in to change notification settings - Fork 0
/
Belesar_CSV_generator.R
80 lines (57 loc) · 2.62 KB
/
Belesar_CSV_generator.R
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
library(here)
source(here::here('libraries.R'))
Belesar_CSV_Generator<- function(Belesar_ultimo){
Belesar_data<- readRDS(Belesar_ultimo)
Belesar_lolat<- lon_lat_df_ls(Belesar_data)
Belesar_lolat1<- lapply(Belesar_lolat, uv_transformation)
Belesar_rain<- lapply(Belesar_lolat1, extract_rain_data)
nombres<- names(Belesar_rain)
precipitacion_horaria<- lapply(Belesar_rain, function(x) x$prep_hourly)
tabla_precip<- data.frame(matrix(nrow = length(precipitacion_horaria$`-8.02328491210938__42.1343421936035`)))
for (i in 1:length(precipitacion_horaria)) {
tabla_precip<- as.data.frame(cbind(tabla_precip,precipitacion_horaria[[i]]))
}
tabla_precip[,1]<- Belesar_rain[[1]]$fechas
colnames(tabla_precip)<- c("Date", nombres)
path<- here::here('Data/Parques/Belesar/CSV/')
nombre1<- str_split(Belesar_ultimo, "/")
nombre2<- nombre1[[1]][length(nombre1[[1]])]
nombre3<- str_remove(nombre2 ,".RDS")
path_nombre<-paste0(path,nombre3,"_GRID.CSV")
write.table(tabla_precip, path_nombre,
sep = ";",
dec = ".",
row.names = F,
quote = F)
}
Belesar_CSV_Generator_Point<- function(Belesar_ultimo, point){
Belesar_data<- readRDS(Belesar_ultimo)
Belesar_lolat<- lon_lat_df_ls(Belesar_data)
Belesar_lolat1<- lapply(Belesar_lolat, uv_transformation)
Belesar_rain<- lapply(Belesar_lolat1, extract_rain_data)
nombres<- names(Belesar_rain)
precipitacion_horaria<- lapply(Belesar_rain, function(x) x$prep_hourly)
tabla_precip<- data.frame(matrix(nrow = length(precipitacion_horaria$`-8.02328491210938__42.1343421936035`)))
for (i in 1:length(precipitacion_horaria)) {
tabla_precip<- as.data.frame(cbind(tabla_precip,precipitacion_horaria[[i]]))
}
tabla_precip[,1]<- Belesar_rain[[1]]$fechas
colnames(tabla_precip)<- c("Date", nombres)
path<- here::here('Data/Parques/Belesar/CSV/')
nombre1<- str_split(Belesar_ultimo, "/")
nombre2<- nombre1[[1]][length(nombre1[[1]])]
nombre3<- str_remove(nombre2 ,".RDS")
path_nombre<-paste0(path,nombre3,"_",point,".CSV")
tabla_precipita_localizacion<- tabla_precip[,c(1,point)]
write.table(tabla_precipita_localizacion, path_nombre,
sep = ";",
dec = ".",
row.names = F,
quote = F)
}
Belesar_files<- list.files(here::here('Data/Parques/Belesar/'), full.names = T) %>% .[str_detect(., ".RDS")]
Belesar_ultimo<- Belesar_files[length(Belesar_files)]
##Generar CSV Belesar de todas las localizaciones
Belesar_CSV_Generator(Belesar_ultimo)
# (-7.6914, 42.6852) para mi es el punto V
Belesar_CSV_Generator_Point(Belesar_ultimo,19)