From 2577e6f6b216fc224dee5a0601f93156a74ea2dd Mon Sep 17 00:00:00 2001 From: Nathanael Wong Date: Sat, 7 Sep 2024 16:52:06 -0400 Subject: [PATCH] Debug documentation oops hahahahaha --- docs/src/georegions/basics/shape.md | 2 +- src/georegions/query.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/georegions/basics/shape.md b/docs/src/georegions/basics/shape.md index a61f066e..ee927be2 100644 --- a/docs/src/georegions/basics/shape.md +++ b/docs/src/georegions/basics/shape.md @@ -27,7 +27,7 @@ geo = GeoRegion("AR6_NWN") Using the function `coordinates()`, we are able to retrieve the coordinates of the vertices that define the shape of the `GeoRegion`. In the below example, we plot the longitude and latitude points. ```@example properties -lon,lat = coordGeoRegion(geo) +lon,lat = coordinates(geo) aspect = (maximum(slon)-minimum(slon))/(maximum(slat)-minimum(slat)) fig = Figure() diff --git a/src/georegions/query.jl b/src/georegions/query.jl index 638ea823..882dfd60 100644 --- a/src/georegions/query.jl +++ b/src/georegions/query.jl @@ -1,7 +1,7 @@ """ coordinates( geo :: GeoRegion; - n :: Int = 21 + n :: Int = 1 ) -> lon :: Vector{<:Real}, lat :: Vector{<:Real} For a given GeoRegion, create longitude and latitude vectors of the shape.