Skip to content

Commit

Permalink
Debug documentation oops hahahahaha
Browse files Browse the repository at this point in the history
  • Loading branch information
natgeo-wong committed Sep 7, 2024
1 parent 38874cc commit 2577e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/georegions/basics/shape.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion src/georegions/query.jl
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 2577e6f

Please sign in to comment.