-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcarto_prep.R
More file actions
executable file
·28 lines (17 loc) · 1.04 KB
/
Copy pathcarto_prep.R
File metadata and controls
executable file
·28 lines (17 loc) · 1.04 KB
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
GEF.LandCover.Result <- read.table("/home/aiddata/Desktop/Github/GEF/Summary/GEF_LandCover.csv",
sep=",", header=TRUE)
GEF.Frag.Result <- read.table("/home/aiddata/Desktop/Github/GEF/Summary/GEF_Frag.csv",
sep=",", header=TRUE)
GEF.NDVI.Result <- read.table("/home/aiddata/Desktop/Github/GEF/Summary/GEF_NDVI.csv",
sep=",", header=TRUE)
GEF.Val.Result <- read.table("/home/aiddata/Desktop/Github/GEF/Summary/GEF_Valuations_Prediction.csv",
sep=",", header=TRUE)
GEF.Val.Result_out <- GEF.Val.Result[c("carbonTonnes", "LAT", "LON")]
write.csv(GEF.Val.Result_out,
"/home/aiddata/Desktop/Github/GEF/Viz/GEF_Valuation.csv")
write.csv(GEF.NDVI.Result,
"/home/aiddata/Desktop/Github/GEF/Viz/GEF_NDVI.csv")
write.csv(GEF.Frag.Result,
"/home/aiddata/Desktop/Github/GEF/Viz/GEF_Fragmentation.csv")
write.csv(GEF.LandCover.Result,
"/home/aiddata/Desktop/Github/GEF/Viz/GEF_LandCover.csv")