diff --git a/DESCRIPTION b/DESCRIPTION index f5a4a35..295bbab 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: fluvgeo Title: A Package for Fluvial Geomorphic Analysis -Version: 0.1.35 +Version: 0.1.36 Authors@R: c( person("Michael", "Dougherty", email = "Michael.P.Dougherty@usace.army.mil", @@ -55,9 +55,10 @@ Imports: sf, sp, stats, + stringr, + terra, testthat, tidyr, tmap, - tmaptools, utils -RoxygenNote: 7.2.1 +RoxygenNote: 7.2.2 diff --git a/NAMESPACE b/NAMESPACE index 21a6387..3e6cee3 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -116,6 +116,7 @@ importFrom(ggrepel,geom_text_repel) importFrom(grDevices,colorRampPalette) importFrom(grDevices,gray.colors) importFrom(grDevices,grey) +importFrom(methods,"slot<-") importFrom(purrr,discard) importFrom(purrr,map) importFrom(raster,as.raster) @@ -142,6 +143,7 @@ importFrom(sp,CRS) importFrom(sp,SpatialPointsDataFrame) importFrom(sp,merge) importFrom(sp,proj4string) +importFrom(sp,wkt) importFrom(stats,aggregate) importFrom(stats,approxfun) importFrom(stats,integrate) @@ -150,6 +152,7 @@ importFrom(stats,na.omit) importFrom(stats,predict) importFrom(stats,setNames) importFrom(stringr,str_detect) +importFrom(stringr,str_replace) importFrom(terra,linearUnits) importFrom(terra,vect) importFrom(testthat,expect_true) diff --git a/NEWS.md b/NEWS.md index 9c2d602..eef4a93 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,12 @@ +# fluvgeo v0.1.36 (2022-11-15) + +## Bug Fixes +* Updated the process for identifying horizontal coordinate systems and setting linear unit conversion factors for slope and sinuosity calculations. +* Fixed bug when calculating sinuosity when linear units not meters. +* Identified ESRI arcgisbinding bug in properly handling coordinate reference systems on read and write (see `arcgisbinding` issue 26 & 38)[https://github.com/R-ArcGIS/r-bridge/issues/38]. + + + # fluvgeo v0.1.35 (2021-02-28) ## Major Changes diff --git a/README.Rmd b/README.Rmd index c05d156..6f79b79 100644 --- a/README.Rmd +++ b/README.Rmd @@ -13,7 +13,7 @@ An `R` Package for Performing **Fluv**ial **Geo**mrphology Analysis ## Package Status [![Maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle) [![Project Status: Active The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) -[![packageversion](https://img.shields.io/badge/Package%20version-0.1.35-orange.svg?style=flat-square)](commits/master) +[![packageversion](https://img.shields.io/badge/Package%20version-0.1.36-orange.svg?style=flat-square)](commits/master) [![Last-changedate](https://img.shields.io/badge/last%20change-`r gsub('-', '--', Sys.Date())`-yellowgreen.svg)](/commits/master) [![Licence](https://img.shields.io/badge/licence-CC0-blue.svg)](http://choosealicense.com/licenses/cc0-1.0/) diff --git a/README.md b/README.md index 7e91cf9..c4026fd 100644 --- a/README.md +++ b/README.md @@ -2,24 +2,21 @@ -fluvgeo -======= +# fluvgeo An `R` Package for Performing **Fluv**ial **Geo**mrphology Analysis -Package Status --------------- +## Package Status [![Maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle) [![Project Status: Active The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) -[![packageversion](https://img.shields.io/badge/Package%20version-0.1.35-orange.svg?style=flat-square)](commits/master) -[![Last-changedate](https://img.shields.io/badge/last%20change-2021--02--28-yellowgreen.svg)](/commits/master) +[![packageversion](https://img.shields.io/badge/Package%20version-0.1.36-orange.svg?style=flat-square)](commits/master) +[![Last-changedate](https://img.shields.io/badge/last%20change-2022--11--15-yellowgreen.svg)](/commits/master) [![Licence](https://img.shields.io/badge/licence-CC0-blue.svg)](http://choosealicense.com/licenses/cc0-1.0/) -Description ------------ +## Description This package contains a wide range of functions for performing fluvial geomorphic analysis. This `R` package is designed for use with the @@ -37,8 +34,7 @@ perform a wide range of fluvial geomorphic analysis: -Funding -------- +## Funding Funding for development and maintenance of FluvialGeomorph has been provided by the following US Army Corps of Engineers (USACE) programs: @@ -60,31 +56,26 @@ provided by the following US Army Corps of Engineers (USACE) programs: -Latest Updates --------------- +## Latest Updates Check out the [NEWS](NEWS.md) for details on the latest updates. -Authors -------- +## Authors - Michael Dougherty, Geographer, U.S. Army Corps of Engineers ORCID iD iconhttps://orcid.org/0000-0002-1465-5927 - - Christopher Haring, Fluvial Geomorphologist/Research Physical Scientist, U.S. Army Corps of Engineers - Charles Theiling, Ecologist, U.S. Army Corps of Engineers -Install -------- +## Install To install the `fluvgeo` package, install from GitHub using the `devtools` package: remotes::install_github(repo = "FluvialGeomorph/fluvgeo@*release") -Bug Reports ------------ +## Bug Reports If you find any bugs using `fluvgeo`, please open an [issue](https://github.com/FluvialGeomorph/fluvgeo/issues).