├── .Rbuildignore ├── .Rhistory ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── midlines_functions.R ├── midlines_polish.R └── midlines_refine.R ├── README.Rmd ├── README.md ├── data-raw ├── thames.R └── thames.RData ├── data └── thames.rda ├── man ├── figures │ ├── README-border_line-1.png │ ├── README-border_line1-1.png │ ├── README-border_line1-2.png │ ├── README-border_line2-1.png │ ├── README-border_line2-2.png │ ├── README-border_line2-3.png │ ├── README-clean1-1.png │ ├── README-clean1-2.png │ ├── README-clean1-3.png │ ├── README-clean1-4.png │ ├── README-clean1-5.png │ ├── README-clean2-1.png │ ├── README-clean2-2.png │ ├── README-debit-1.png │ ├── README-debit-2.png │ ├── README-debit-3.png │ ├── README-device_off1-1.png │ ├── README-draw-1.png │ ├── README-gaps1-1.png │ ├── README-gaps1-2.png │ ├── README-gaps2-1.png │ ├── README-gaps2-2.png │ ├── README-gaps3-1.png │ ├── README-gaps3-2.png │ ├── README-gaps3-3.png │ ├── README-length-1.png │ ├── README-n_removed-1.png │ ├── README-n_removed-2.png │ ├── README-reset_device-1.png │ ├── README-smooth-1.png │ ├── README-smooth-2.png │ ├── README-smooth-3.png │ ├── README-thames-1.png │ ├── README-unnamed-chunk-2-1.png │ ├── README-unnamed-chunk-2-2.png │ ├── README-unnamed-chunk-2-3.png │ ├── README-unnamed-chunk-2-4.png │ ├── README-unnamed-chunk-3-1.png │ ├── README-unnamed-chunk-4-1.png │ ├── README-voronoi-1.png │ ├── README-voronoi-2.png │ ├── README-zig-zag1-1.png │ ├── README-zig-zag1-2.png │ ├── README-zig-zag2-1.png │ ├── README-zig-zag2-2.png │ ├── README-zig-zag3-1.png │ ├── README-zig-zag3-2.png │ ├── README-zig-zag4-1.png │ ├── README-zig-zag4-2.png │ └── README-zig-zag4-3.png ├── midlines_check.Rd ├── midlines_clean.Rd ├── midlines_debit.Rd ├── midlines_dedensify.Rd ├── midlines_draw.Rd ├── midlines_group.Rd ├── midlines_smooth.Rd └── thames.Rd ├── midlines.Rproj └── vignettes ├── .gitignore └── midlines.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/.Rhistory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: midlines authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/R/data.R -------------------------------------------------------------------------------- /R/midlines_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/R/midlines_functions.R -------------------------------------------------------------------------------- /R/midlines_polish.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/R/midlines_polish.R -------------------------------------------------------------------------------- /R/midlines_refine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/R/midlines_refine.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/thames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/data-raw/thames.R -------------------------------------------------------------------------------- /data-raw/thames.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/data-raw/thames.RData -------------------------------------------------------------------------------- /data/thames.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/data/thames.rda -------------------------------------------------------------------------------- /man/figures/README-border_line-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-border_line-1.png -------------------------------------------------------------------------------- /man/figures/README-border_line1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-border_line1-1.png -------------------------------------------------------------------------------- /man/figures/README-border_line1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-border_line1-2.png -------------------------------------------------------------------------------- /man/figures/README-border_line2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-border_line2-1.png -------------------------------------------------------------------------------- /man/figures/README-border_line2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-border_line2-2.png -------------------------------------------------------------------------------- /man/figures/README-border_line2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-border_line2-3.png -------------------------------------------------------------------------------- /man/figures/README-clean1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean1-1.png -------------------------------------------------------------------------------- /man/figures/README-clean1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean1-2.png -------------------------------------------------------------------------------- /man/figures/README-clean1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean1-3.png -------------------------------------------------------------------------------- /man/figures/README-clean1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean1-4.png -------------------------------------------------------------------------------- /man/figures/README-clean1-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean1-5.png -------------------------------------------------------------------------------- /man/figures/README-clean2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean2-1.png -------------------------------------------------------------------------------- /man/figures/README-clean2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-clean2-2.png -------------------------------------------------------------------------------- /man/figures/README-debit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-debit-1.png -------------------------------------------------------------------------------- /man/figures/README-debit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-debit-2.png -------------------------------------------------------------------------------- /man/figures/README-debit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-debit-3.png -------------------------------------------------------------------------------- /man/figures/README-device_off1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-device_off1-1.png -------------------------------------------------------------------------------- /man/figures/README-draw-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-draw-1.png -------------------------------------------------------------------------------- /man/figures/README-gaps1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps1-1.png -------------------------------------------------------------------------------- /man/figures/README-gaps1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps1-2.png -------------------------------------------------------------------------------- /man/figures/README-gaps2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps2-1.png -------------------------------------------------------------------------------- /man/figures/README-gaps2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps2-2.png -------------------------------------------------------------------------------- /man/figures/README-gaps3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps3-1.png -------------------------------------------------------------------------------- /man/figures/README-gaps3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps3-2.png -------------------------------------------------------------------------------- /man/figures/README-gaps3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-gaps3-3.png -------------------------------------------------------------------------------- /man/figures/README-length-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-length-1.png -------------------------------------------------------------------------------- /man/figures/README-n_removed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-n_removed-1.png -------------------------------------------------------------------------------- /man/figures/README-n_removed-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-n_removed-2.png -------------------------------------------------------------------------------- /man/figures/README-reset_device-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-reset_device-1.png -------------------------------------------------------------------------------- /man/figures/README-smooth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-smooth-1.png -------------------------------------------------------------------------------- /man/figures/README-smooth-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-smooth-2.png -------------------------------------------------------------------------------- /man/figures/README-smooth-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-smooth-3.png -------------------------------------------------------------------------------- /man/figures/README-thames-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-thames-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-unnamed-chunk-2-3.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-unnamed-chunk-2-4.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-voronoi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-voronoi-1.png -------------------------------------------------------------------------------- /man/figures/README-voronoi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-voronoi-2.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag1-1.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag1-2.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag2-1.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag2-2.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag3-1.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag3-2.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag4-1.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag4-2.png -------------------------------------------------------------------------------- /man/figures/README-zig-zag4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/figures/README-zig-zag4-3.png -------------------------------------------------------------------------------- /man/midlines_check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_check.Rd -------------------------------------------------------------------------------- /man/midlines_clean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_clean.Rd -------------------------------------------------------------------------------- /man/midlines_debit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_debit.Rd -------------------------------------------------------------------------------- /man/midlines_dedensify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_dedensify.Rd -------------------------------------------------------------------------------- /man/midlines_draw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_draw.Rd -------------------------------------------------------------------------------- /man/midlines_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_group.Rd -------------------------------------------------------------------------------- /man/midlines_smooth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/midlines_smooth.Rd -------------------------------------------------------------------------------- /man/thames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/man/thames.Rd -------------------------------------------------------------------------------- /midlines.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/midlines.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/midlines.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichardPatterson/midlines/HEAD/vignettes/midlines.Rmd --------------------------------------------------------------------------------