This is a Shiny web app. It is written on R programming languaje using the Shiny library to develop the General User Interface. With this tool you can import Tritech StarFish 990F Sidescan Sonar CSV raw files from ScanLine software and extract the navigation as:
- Text datatables (.csv)
- ESRI Shapefiles (.shp)
- KML file format (.kml)
The aim of this software is "fast extract" of the navigation data to visualize it on a GIS software like QGIS or in a web map in the "Maps" tab.
You can run a demo here, but I suggest run it locally using R because the csv raw files are generally big files (hundreds of megabytes) to upload over internet.
library('shiny')
library('xts')
library('sp')
library('maptools')
library('rgdal')
library('leaflet')
To install the requiered packages you can execute in R:
install.packages("shiny")
install.packages("xts")
install.packages("sp")
install.packages("maptools")
install.packages("rgdal")
install.packages("leaflet")
Execute in R:
shiny::runGitHub('guzmanlopez/StarFishNavigation')
- Fix map bugs
- Extract and show the backscatter data.
GPLv3