Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xavierberger/gpsbook
Automatically exported from code.google.com/p/gpsbook
https://github.com/xavierberger/gpsbook
Last synced: about 2 months ago
JSON representation
Automatically exported from code.google.com/p/gpsbook
- Host: GitHub
- URL: https://github.com/xavierberger/gpsbook
- Owner: XavierBerger
- Created: 2015-03-14T07:27:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-06T19:20:14.000Z (over 8 years ago)
- Last Synced: 2024-10-12T16:55:54.392Z (3 months ago)
- Language: C++
- Size: 7.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#GPSBook#
**GPSBook** is a software dedicated to manage traces generated by GPS devices.
**GPSBook** core software is able to manage traces organized by dates and make the selection of traces easy through its interface based on a calendar view.
**GPSBook** core software work with plugins which are providing all the features to the software. These plugins provide the capability to
- Load and save data in various format (Note: Early release only support gpx)
- Apply filters into the data loaded
- Edit data, routes, point of interest
- Display information into graphs, tables or maps in 2D and 3DThere is no limitation regarding the number of plugin you can use.
**GPSBook** is an open source software, free and able to run on Linux, MacOS X and Windows.
> **IMPORTANT NOTE**: Please note that the current releases are early releases. The goal of these releases are to gather feedback from early user and make the development closer to users wishes.
#Developers Memo#
This page is a memo for developer who aims to compile **GPSBook**.
> **Note**: **GPSBook** was initially developped using QT4. Update to QT5 is on going...
**GPSBook** has been developed using QT framework and qtcreator IDE.
##Plugins##
To compile the plugins, it is required to install the following libraries:
####libcurl and libzzip for displayStatistics and displaySRTM####
```
sudo apt-get install curl libcurl4-openssl-dev
sudo apt-get install libquazip5-dev libquazip5-1
```####qwt 6.0 for displayGraphic2D####
```
sudo apt-get install libqwt-qt5-6 libqwt-qt5-dev
```####libQGLViewer 2.3.6 for displayGraphic3D####
```
sudo apt-get install libqglviewer-dev
```####libqscintilla2 for displyRawEditor####
```
sudo apt-get install libqt5scintilla2-dev```