Skip to content

Commit

Permalink
Suite maintenance 2024 :
Browse files Browse the repository at this point in the history
- Ajout prettymapr à DESCRIPTION
- CRS forcés à 2154 pour le chap 13
  • Loading branch information
jengelaere committed Aug 26, 2024
1 parent 298aa9b commit 0888f46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 13-osm.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,11 @@ Préparons nos données :
```{r osrmtable}
load("extdata/sirene.RData")
emprise_nantes <- COGiter::communes_geo %>%
filter(DEPCOM == "44109")
filter(DEPCOM == "44109") %>%
st_transform(2154)
restaurants_nantes <- filter(sirene44, APET700 == "5610A")%>%
restaurants_nantes <- filter(sirene44, APET700 == "5610A") %>%
st_transform(2154) %>%
st_filter(emprise_nantes) %>%
st_transform(4326)
```
Expand Down
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Imports:
osmextract,
osrm,
pagedown,
prettymapr,
rmapshaper,
rmarkdown,
RPostgres,
Expand Down

0 comments on commit 0888f46

Please sign in to comment.