From bc2ff2586c8368badd14d7bcacfa0205a5111fe0 Mon Sep 17 00:00:00 2001 From: JustinCally <36715313+JustinCally@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:49:53 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20JustinCa?= =?UTF-8?q?lly/VicmapR@0d86c6c44e42e3d20c825bbc4817d9557cb0ee8f=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 404.html | 2 +- LICENSE.html | 2 +- articles/beginner_vicmap.html | 34 ++++++++++++++--------------- articles/index.html | 2 +- articles/migration_odp.html | 2 +- articles/query_vicmap.html | 6 ++--- authors.html | 2 +- index.html | 2 +- news/index.html | 6 ++++- pkgdown.yml | 2 +- reference/CQL.html | 2 +- reference/check_geoserver.html | 2 +- reference/collect.html | 2 +- reference/convert_layer_name.html | 2 +- reference/cql_geom_predicates.html | 2 +- reference/data_citation.html | 2 +- reference/feature_hits.html | 2 +- reference/filter.html | 2 +- reference/geom_col_name.html | 2 +- reference/head.html | 2 +- reference/index.html | 2 +- reference/listLayers.html | 2 +- reference/name_conversions.html | 2 +- reference/pipe.html | 2 +- reference/print.vicmap_promise.html | 2 +- reference/select.html | 2 +- reference/show_query.html | 2 +- reference/vicmap_options.html | 2 +- reference/vicmap_query.html | 2 +- reference/wfsConnection-class.html | 2 +- 30 files changed, 52 insertions(+), 48 deletions(-) diff --git a/404.html b/404.html index 27e50f5..ca816c3 100644 --- a/404.html +++ b/404.html @@ -39,7 +39,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/LICENSE.html b/LICENSE.html index e44090e..05ea849 100644 --- a/LICENSE.html +++ b/LICENSE.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/articles/beginner_vicmap.html b/articles/beginner_vicmap.html index bf1bf25..cdb7032 100644 --- a/articles/beginner_vicmap.html +++ b/articles/beginner_vicmap.html @@ -40,7 +40,7 @@ VicmapR - 0.2.2 + 0.2.3 @@ -831,8 +831,8 @@

Quick visu # plot data mapview(tram_route) -
-

While the output is basic, it is very simple to achieve and lines can +

+

While the output is basic, it is very simple to achieve and lines can be clicked on to obtain the details from the other fields.

@@ -867,8 +867,8 @@

Visualisation with leaflet "<b>Route Name: </b>", tram_route$trip_headsign, "<br>", "<b>Distance (km): </b>", tram_route$route_km) )

-
- +
+

Spatial filtering @@ -906,8 +906,8 @@

The sf package# Intersection darebin_trams <- sf::st_intersection(tram_route, darebin) mapview(darebin_trams) + mapview(darebin, alpha.regions = 0.3, col.regions= "green")

-
- +
+

Filtering within a radius @@ -938,8 +938,8 @@

Filtering within a radiushome_radius <- sf::st_buffer(home_utm, dist = 10000) mapview(home_utm) + mapview(home_radius)

-
-

Now we can use this radius to filter our tram route data. Don’t +

+

Now we can use this radius to filter our tram route data. Don’t forget, we need to convert the crs to 4283 to work with our tram route data

@@ -1011,8 +1011,8 @@ 

Filtering within a radius tram_route_10k <- st_intersection(tram_route, home_radius) mapview(tram_route_10k) + mapview(home_radius, alpha.regions = 0.3, col.regions = "green")

-
- +
+

Finding nearby points @@ -1043,8 +1043,8 @@

Finding nearby points # Recorded tram tracks within 300m of the route mapview(trams_en_route, col.regions = "Black") + mapview(route_line)

-
- +
+ @@ -1069,8 +1069,8 @@

Using the VicmapR Geometric Filters collect() mapview(darebin_trams) + mapview(darebin, alpha.regions = 0.3, col.regions = "orange") -
-

And finally, the tram routes on our cycling route. To find tram +

+

And finally, the tram routes on our cycling route. To find tram tracks within 30m we use the INTERSECTS() function and the cycling route with an added 300m buffer. Note: VicmapR geometric filters will be simplified, thus if precise intersections are desired, it is @@ -1102,8 +1102,8 @@

Using the VicmapR Geometric Filters mapview::mapview(route_poly) + mapview::mapview(route_intersection, color = "red", lwd = 5) -
- +
+

Debrief diff --git a/articles/index.html b/articles/index.html index e4cc966..6888830 100644 --- a/articles/index.html +++ b/articles/index.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3

diff --git a/articles/migration_odp.html b/articles/migration_odp.html index 07a1f65..4bf728f 100644 --- a/articles/migration_odp.html +++ b/articles/migration_odp.html @@ -40,7 +40,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/articles/query_vicmap.html b/articles/query_vicmap.html index a0c2b6e..99a8bab 100644 --- a/articles/query_vicmap.html +++ b/articles/query_vicmap.html @@ -40,7 +40,7 @@ VicmapR - 0.2.2 + 0.2.3 @@ -352,8 +352,8 @@

Geometric filtersaddLayersControl(baseGroups = c("Melbourne polygon", "Melbourne bbox"), overlayGroups = c("INTERSECTS", "BBOX", "DWITHIN")) %>% hideGroup(c("BBOX", "DWITHIN")) -
- +
+ diff --git a/authors.html b/authors.html index 0bc8430..0687295 100644 --- a/authors.html +++ b/authors.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/index.html b/index.html index 235a8fd..86f1c1e 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/news/index.html b/news/index.html index a4f0a26..29598df 100644 --- a/news/index.html +++ b/news/index.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 @@ -63,6 +63,10 @@

Changelog

Source: NEWS.md +
+ +
diff --git a/reference/check_geoserver.html b/reference/check_geoserver.html index 28baa33..6bda1f6 100644 --- a/reference/check_geoserver.html +++ b/reference/check_geoserver.html @@ -18,7 +18,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/collect.html b/reference/collect.html index b8e7103..9c86a16 100644 --- a/reference/collect.html +++ b/reference/collect.html @@ -19,7 +19,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/convert_layer_name.html b/reference/convert_layer_name.html index 733fc3b..ba26560 100644 --- a/reference/convert_layer_name.html +++ b/reference/convert_layer_name.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/cql_geom_predicates.html b/reference/cql_geom_predicates.html index 6c0c43c..b24e742 100644 --- a/reference/cql_geom_predicates.html +++ b/reference/cql_geom_predicates.html @@ -22,7 +22,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/data_citation.html b/reference/data_citation.html index 31814ed..5160ae1 100644 --- a/reference/data_citation.html +++ b/reference/data_citation.html @@ -21,7 +21,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/feature_hits.html b/reference/feature_hits.html index 811332f..c5e17d4 100644 --- a/reference/feature_hits.html +++ b/reference/feature_hits.html @@ -19,7 +19,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/filter.html b/reference/filter.html index f70f190..1ad77e6 100644 --- a/reference/filter.html +++ b/reference/filter.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/geom_col_name.html b/reference/geom_col_name.html index 73e34e8..c07e2aa 100644 --- a/reference/geom_col_name.html +++ b/reference/geom_col_name.html @@ -21,7 +21,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/head.html b/reference/head.html index c373fe2..6b11581 100644 --- a/reference/head.html +++ b/reference/head.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/index.html b/reference/index.html index ba4d473..bc2dda4 100644 --- a/reference/index.html +++ b/reference/index.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/listLayers.html b/reference/listLayers.html index f498502..1ef6c9a 100644 --- a/reference/listLayers.html +++ b/reference/listLayers.html @@ -20,7 +20,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/name_conversions.html b/reference/name_conversions.html index 687af48..0b01689 100644 --- a/reference/name_conversions.html +++ b/reference/name_conversions.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/pipe.html b/reference/pipe.html index 5490ac5..fdf20fd 100644 --- a/reference/pipe.html +++ b/reference/pipe.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/print.vicmap_promise.html b/reference/print.vicmap_promise.html index c7ebc65..572b213 100644 --- a/reference/print.vicmap_promise.html +++ b/reference/print.vicmap_promise.html @@ -18,7 +18,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/select.html b/reference/select.html index 8ad3c38..7a5c321 100644 --- a/reference/select.html +++ b/reference/select.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/show_query.html b/reference/show_query.html index 8debde6..e019a5b 100644 --- a/reference/show_query.html +++ b/reference/show_query.html @@ -19,7 +19,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/vicmap_options.html b/reference/vicmap_options.html index e079f70..b4faa17 100644 --- a/reference/vicmap_options.html +++ b/reference/vicmap_options.html @@ -30,7 +30,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/vicmap_query.html b/reference/vicmap_query.html index 47555e9..2adcf68 100644 --- a/reference/vicmap_query.html +++ b/reference/vicmap_query.html @@ -18,7 +18,7 @@ VicmapR - 0.2.2 + 0.2.3 diff --git a/reference/wfsConnection-class.html b/reference/wfsConnection-class.html index 7277fdd..9d64958 100644 --- a/reference/wfsConnection-class.html +++ b/reference/wfsConnection-class.html @@ -17,7 +17,7 @@ VicmapR - 0.2.2 + 0.2.3