This R
script is a workflow to perform a river bathymetry interpolation following Merwade et al. 2006 work.
This script uses the following R
packages:
# Data manipulation
library('data.table')
library('RPostgreSQL')
library('postGIStools')
library('dplyr')
# Geoestatistic
library('gstat')
library('automap')
library('gdalUtils')
library('SpatialPosition')
# GIS
library('sp')
library('raster')
library('rasterVis')
library('maptools')
library('rgdal')
library('rgeos')
library('geosphere')
library('ggmap')
library('mapview')
# The Salesman Problem (resolve shortest path)
library('TSP')
# Colors and plots
library('plotrix')
library('RColorBrewer')