Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.1 KB

README.md

File metadata and controls

46 lines (35 loc) · 1.1 KB

River bathymetry interpolation

This R script is a workflow to perform a river bathymetry interpolation following Merwade et al. 2006 work.


Script under development!

This script is under development!


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')