From da1957f4839e98f453e88343bf0ccbd05d817026 Mon Sep 17 00:00:00 2001 From: Gabriele Tijunaityte Date: Thu, 26 Sep 2024 17:09:00 +0200 Subject: [PATCH] Fix coordinates --- index.Rmd | 2 +- index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.Rmd b/index.Rmd index 60fa7c6..474e5c6 100644 --- a/index.Rmd +++ b/index.Rmd @@ -385,7 +385,7 @@ gl = ax.gridlines( ) # Set the extent to the extent of the municipalities -min_x, max_x, min_y, max_y = gdf.total_bounds +min_x, min_y, max_x, max_y = gdf.total_bounds ax.set_extent((min_x, max_x, min_y, max_y), crs=crs) # ax.set_extent(gdf.total_bounds, crs=crs) would do this in one step, diff --git a/index.html b/index.html index ace9319..0bddcb8 100644 --- a/index.html +++ b/index.html @@ -905,7 +905,7 @@

Arno Timmer, Jan Verbesselt, Jorge Mendes de Jesus, Aldo Bergsma, Johannes Eberenz, Dainius Masiliunas, David Swinkels, Judith Verstegen, Corné Vreugdenhil

-

25 September, 2024

+

26 September, 2024

@@ -1456,7 +1456,7 @@

Smaller maps

) # Set the extent to the extent of the municipalities -min_x, max_x, min_y, max_y = gdf.total_bounds +min_x, min_y, max_x, max_y = gdf.total_bounds ax.set_extent((min_x, max_x, min_y, max_y), crs=crs) # ax.set_extent(gdf.total_bounds, crs=crs) would do this in one step,