Skip to content

Commit

Permalink
Download alternatif
Browse files Browse the repository at this point in the history
  • Loading branch information
linogaliana committed Jan 15, 2025
1 parent 445d340 commit ec8f20b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions applications/download-alternative.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Define base URL for downloads
base_url <- "https://minio.lab.sspcloud.fr/projet-formation/nouvelles-sources/data/"

# Download the files
download.file(url = paste0(base_url, "geoparquet/dvf.parquet"),
destfile = "data/dvf.parquet")

download.file(url = paste0(base_url, "geoparquet/carreaux.parquet"),
destfile = "data/carreaux.parquet")

download.file(url = paste0(base_url, "triangle.geojson"),
destfile = "data/triangle.geojson")

download.file(url = paste0(base_url, "malakoff.geojson"),
destfile = "data/malakoff.geojson")

download.file(url = paste0(base_url, "montrouge.geojson"),
destfile = "data/montrouge.geojson")

0 comments on commit ec8f20b

Please sign in to comment.