Skip to content

Commit

Permalink
Merge pull request #1826 from ocefpaf/typo
Browse files Browse the repository at this point in the history
Fix minor typo
  • Loading branch information
ocefpaf authored Nov 6, 2023
2 parents 5e8cc2e + 30d1929 commit 944b9b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced_guide/polygons_from_list_of_points.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def draw_points(map_object, list_of_points, layer_name, line_color, fill_color,
The convex hull is probably the most common approach - its goal is to create the smallest polygon that contains all points from a given list. The scipy.spatial package provides this algorithm (https://docs.scipy.org/doc/scipy-0.19.0/reference/generated/scipy.spatial.ConvexHull.html, accessed 29.12.2018).

```{code-cell} ipython3
# Function that takes a map and a list of points (LON,LAT tupels) and
# Function that takes a map and a list of points (LON,LAT tuples) and
# returns a map with the convex hull polygon from the points as a new layer
Expand Down

0 comments on commit 944b9b1

Please sign in to comment.