Skip to content
Open
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 index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@
<h4 class="author"><em>Arno Timmer, Jan Verbesselt, Jorge
Mendes de Jesus, Aldo Bergsma, Johannes Eberenz, Dainius Masiliunas,
David Swinkels, Judith Verstegen, Corné Vreugdenhil</em></h4>
<h4 class="date"><em>25 September, 2024</em></h4>
<h4 class="date"><em>26 September, 2024</em></h4>



Expand Down Expand Up @@ -1456,7 +1456,7 @@ <h2>Smaller maps</h2>
<span id="cb21-19"><a href="#cb21-19" tabindex="-1"></a>)</span>
<span id="cb21-20"><a href="#cb21-20" tabindex="-1"></a></span>
<span id="cb21-21"><a href="#cb21-21" tabindex="-1"></a><span class="co"># Set the extent to the extent of the municipalities</span></span>
<span id="cb21-22"><a href="#cb21-22" tabindex="-1"></a>min_x, max_x, min_y, max_y <span class="op">=</span> gdf.total_bounds</span>
<span id="cb21-22"><a href="#cb21-22" tabindex="-1"></a>min_x, min_y, max_x, max_y <span class="op">=</span> gdf.total_bounds</span>
<span id="cb21-23"><a href="#cb21-23" tabindex="-1"></a>ax.set_extent((min_x, max_x, min_y, max_y), crs<span class="op">=</span>crs)</span>
<span id="cb21-24"><a href="#cb21-24" tabindex="-1"></a></span>
<span id="cb21-25"><a href="#cb21-25" tabindex="-1"></a><span class="co"># ax.set_extent(gdf.total_bounds, crs=crs) would do this in one step, </span></span>
Expand Down