Skip to content

Commit

Permalink
update input gpkg instead of Rds
Browse files Browse the repository at this point in the history
  • Loading branch information
robitalec committed Apr 15, 2020
1 parent 8af53d0 commit 4146f42
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions R/02-fogo-island-figure.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ lapply(libs, require, character.only = TRUE)


### Data ----
fogo <- readRDS('output/fogo-island-polygons.Rds')
roads <- readRDS('output/fogo-roads.Rds')
fogo <- st_read('output/fogo-island-polygons.gpkg')
roads <- st_read('output/fogo-roads.gpkg')

# CRS
utm <- st_crs('+proj=utm +zone=21 ellps=WGS84')
Expand Down
2 changes: 1 addition & 1 deletion R/04-newfoundland-figure.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lapply(libs, require, character.only = TRUE)


### Data ----
nl <- readRDS('output/newfoundland-polygons.Rds')
nl <- st_read('output/newfoundland-polygons.gpkg')

# CRS
utm <- st_crs('+proj=utm +zone=21 ellps=WGS84')
Expand Down
6 changes: 3 additions & 3 deletions R/05-fogo-inset-newfoundland-figure.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ lapply(libs, require, character.only = TRUE)


### Data ----
fogo <- readRDS('output/fogo-island-polygons.Rds')
roads <- readRDS('output/fogo-roads.Rds')
fogo <- st_read('output/fogo-island-polygons.gpkg')
roads <- st_read('output/fogo-roads.gpkg')

nl <- readRDS('output/newfoundland-polygons.Rds')
nl <- st_read('output/newfoundland-polygons.gpkg')


# CRS
Expand Down

0 comments on commit 4146f42

Please sign in to comment.