From 7399b483202f1eed25e21150d01cb108fd94af05 Mon Sep 17 00:00:00 2001 From: Clayton Barrows Date: Sat, 28 Sep 2024 13:58:08 -0600 Subject: [PATCH] Update src/plot_network.jl Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/plot_network.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plot_network.jl b/src/plot_network.jl index 465315a..2729eb2 100644 --- a/src/plot_network.jl +++ b/src/plot_network.jl @@ -350,7 +350,7 @@ function lonlat_to_webmercator(xy::Shapefile.Point) return lonlat_to_webmercator(xy.x, xy.y) end -function lonlat_to_webmercator(shp::Vector{Union{Missing,Shapefile.Polygon}}) +function lonlat_to_webmercator(shp::Vector{Union{Missing, Shapefile.Polygon}}) return [lonlat_to_webmercator(polygon) for polygon in shp] end