GPS data analysis using geotools
This blog post explains the usage of a new GPS data analysis tool [1] created to analyze GPS data, using GeoTools [2] Java libraries. This tool follows the structure of Maven quickstart project structure presented in GeoTools web site [3] . Java code for the GPS data analysis tool project is available in GitHub repo [1]. This project follows a generic Model-View-Controller (MVC) code structure. In this structure: (1) View component contains a modules required for User Interface; (2) Controller component contains the modules related to data structures and algorithms; while (3) Model component contains the pathways to resources and utilities that dictate the generic structure of the operation of the tool. Following figure shows the current folder structure of the project. Operation Project is structured as a simple Maven project, so it can be built and used with simple mvn commands. For anyone unfamiliar with maven, getting-started [4] guide is a good place...