From 7a2b94f8cd1ee9ec6fd6bf7e48a0af455492b572 Mon Sep 17 00:00:00 2001 From: Robinlovelace Date: Tue, 20 Aug 2024 00:11:26 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20ITSLeeds?= =?UTF-8?q?/od@185bb31f3348d4ebdcf7a5e5b3a1018e6d13a517=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgdown.yml | 2 +- reference/od_disaggregate.html | 2 +- reference/od_sample_vertices.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgdown.yml b/pkgdown.yml index 0ad21c0..e71d6ce 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -3,4 +3,4 @@ pkgdown: 2.1.0 pkgdown_sha: ~ articles: od: od.html -last_built: 2024-08-20T00:05Z +last_built: 2024-08-20T00:11Z diff --git a/reference/od_disaggregate.html b/reference/od_disaggregate.html index 6ca5032..23c8e25 100644 --- a/reference/od_disaggregate.html +++ b/reference/od_disaggregate.html @@ -223,7 +223,7 @@

Examples

od_disag = od_disaggregate(od, zones, subzones, max_per_od = 500) #> Converting polygons to points #> Warning: st_centroid assumes attributes are constant over geometries -ncol(od_disag) -3 == ncol(od) # same number of columns, the same... +ncol(od_disag) - 3 == ncol(od) # same number of columns, the same... #> [1] TRUE # Except disag data gained geometry and new agg ids: sum(od_disag[[3]]) == sum(od[[3]]) diff --git a/reference/od_sample_vertices.html b/reference/od_sample_vertices.html index 70fbec7..82663e4 100644 --- a/reference/od_sample_vertices.html +++ b/reference/od_sample_vertices.html @@ -77,7 +77,7 @@

Examples

if (FALSE) { # \dontrun{
 u = "https://github.com/ITSLeeds/od/releases/download/v0.3.1/road_network_min.Rds"
 f = basename(u)
-if(!file.exists(f)) download.file(u, f)
+if (!file.exists(f)) download.file(u, f)
 road_network_min = readRDS(f)
 od_sample_vertices(road_network_min)
 } # }