From d236386293377aeab9b865f7bd43fc42d1373268 Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Fri, 2 Aug 2024 15:35:22 -0800 Subject: [PATCH] Fix error in code cell --- doc/source/core_lazy_load.md | 5 +++++ doc/source/vector_class.md | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/core_lazy_load.md b/doc/source/core_lazy_load.md index 0316f37e..eaf9b3d6 100644 --- a/doc/source/core_lazy_load.md +++ b/doc/source/core_lazy_load.md @@ -57,6 +57,11 @@ For instance, using any {class}`~geoutils.Raster` or {class}`~geoutils.Vector` a always conserve the lazy loading of that match-reference object. ```{code-cell} ipython3 +--- +mystnb: + output_stderr: show +--- + # Use a smaller Raster as reference to crop the initial one smaller_rast = gu.Raster(gu.examples.get_path("everest_landsat_b4_cropped")) rast.crop(smaller_rast) diff --git a/doc/source/vector_class.md b/doc/source/vector_class.md index a765305c..f3ae3223 100644 --- a/doc/source/vector_class.md +++ b/doc/source/vector_class.md @@ -98,14 +98,11 @@ These behaviours aim to simplify the analysis of vectors, removing the need to o ({class}`geopandas.GeoDataFrame`, {class}`geopandas.GeoSeries`, {class}`shapely.Geometry`, {class}`pandas.Series`). ```{code-cell} ipython3 -:tags: [hide-output] - # Example of method with geometric output vect.boundary ``` ```{code-cell} ipython3 -:tags: [hide-output] --- mystnb: output_stderr: show @@ -116,8 +113,6 @@ vect.area ``` ```{code-cell} ipython3 -:tags: [hide-output] - # Example of method with other output type vect.to_json() ```