Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ You can install the released version of `maptiles` from [CRAN](https://CRAN.R-pr
install.packages("maptiles")
```

Alternatively, you can install the development version of `osrm` (the dev branch) from [r-universe](https://riatelab.r-universe.dev/maptiles) with:
Alternatively, you can install the development version of `maptiles` (the dev branch) from [r-universe](https://riatelab.r-universe.dev/maptiles) with:

``` r
install.packages('maptiles', repos = 'https://riatelab.r-universe.dev')
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ You can install the released version of `maptiles` from
install.packages("maptiles")
```

Alternatively, you can install the development version of `osrm` (the
dev branch) from [r-universe](https://riatelab.r-universe.dev/maptiles)
with:
Alternatively, you can install the development version of `maptiles`
(the dev branch) from
[r-universe](https://riatelab.r-universe.dev/maptiles) with:

``` r
install.packages('maptiles', repos = 'https://riatelab.r-universe.dev')
Expand All @@ -37,7 +37,7 @@ OpenStreetMap tiles over North Carolina:

``` r
library(sf)
#> Linking to GEOS 3.13.1, GDAL 3.10.3, PROJ 9.6.0; sf_use_s2() is TRUE
#> Linking to GEOS 3.12.1, GDAL 3.8.4, PROJ 9.4.0; sf_use_s2() is TRUE
library(maptiles)
# import North Carolina counties
nc_raw <- st_read(system.file("shape/nc.shp", package = "sf"), quiet = TRUE)
Expand Down Expand Up @@ -74,7 +74,7 @@ nc_osmpos <- get_tiles(
)
#> Zoom: 7
#> Source(s): © OpenStreetMap contributors © CARTO
#> Cache directory: /tmp/Rtmp1Uv7sr/CARTO.POSITRON
#> Cache directory: /tmp/Rtmpu8Y3DZ/CARTO.POSITRON
#> 8 tiles
#> The resulting raster uses high resolution tiles.
# display map
Expand Down
Loading