From d054e06c91517c601589670628c8724eaa9d4457 Mon Sep 17 00:00:00 2001 From: cyschneck <22159116+cyschneck@users.noreply.github.com> Date: Fri, 23 Jun 2023 00:25:23 -0600 Subject: [PATCH] v0.3.0 for centerlineEqualDistance and saveCenterlineMAT --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa9589b..51f8ab6 100644 --- a/README.md +++ b/README.md @@ -522,8 +522,8 @@ river_object = centerline_width.riverCenterline(csv_data="data/river_coords.csv" The amount of additional points added by interpolating can be adjusted with `interpolate_n`, but defaults to add 5 additional points between values ## Developer Notes: Tech Debt and Bug Fixes -* Option to set the distance between centerline points (a sub version of evenly spaced) (distance seperating = 1m) * option to turn off verbose (no logs printed) +* option to specify Geod type (defaults to pyproj.Geod(ellps='WGS84')) * Fix legend overlapping on graph, replace doc_examples that have an overlapping ## Citations diff --git a/setup.py b/setup.py index f86c03a..5f7c6f1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # Python Package Setup from setuptools import setup, find_namespace_packages -VERSION="0.2.5" +VERSION="0.3.0" DESCRIPTION="A Python package to find the centerline and width of rivers based on the latitude and longitude of the right and left bank" with open("README.md", "r") as f: