1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +02:00
GPXSee/index.html

241 lines
11 KiB
HTML
Raw Normal View History

2017-06-22 01:33:38 +02:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>GPXSee</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
2017-08-16 12:23:36 +02:00
<meta name="Description" content="GPXSee - GPS log file viewer and analyzer that supports GPX, TCX, KML, FIT, IGC and NMEA files." />
2017-06-22 01:33:38 +02:00
<link rel="icon" type="image/png" href="css/images/favicon.png"/>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.jcarousel.js" ></script>
<script type="text/javascript" src="js/js-func.js"></script>
<!--[if IE 6]><link rel="stylesheet" href="css/ie6.css" type="text/css" media="all" /><![endif]-->
</head>
<body>
<!-- START PAGE SOURCE -->
<div class="shell">
<div class="shell-b">
<div id="header">
2017-06-30 01:05:10 +02:00
<img src="css/images/gpxsee.png" alt="" class="logo"/><h1 class="logo"><a href="http://www.gpxsee.org">GPXSee</a></h1>
2017-06-22 01:33:38 +02:00
<div id="navigation">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="gallery.html">Screenshots</a></li>
<li><a href="index.html#maps">Maps</a></li>
<li><a href="index.html#download">Download</a></li>
</ul>
</div>
<div class="cl">&nbsp;</div>
</div>
<div id="slider"> <a href="#" id="prev">prev</a>
<div class="slider-content">
<ul>
<li>
<div class="left-side"> <img src="css/images/preview.png" alt="" /> </div>
<div class="right-side">
<p>GPXSee has a clean and effective GUI layout that does not waste your screen space
with unnecessary elements.</p>
<div class="buttons">
<a href="https://sourceforge.net/projects/gpxsee/files/latest/download" class="download-btn">Download GPXSee</a>
<a href="https://github.com/tumic0/GPXSee" class="github-btn">View on GitHub</a>
</div>
</div>
<div class="cl">&nbsp;</div>
</li>
<li>
<div class="left-side"> <img src="css/images/formats.png" alt="" /> </div>
<div class="right-side">
<p>GPXSee supports all main GPS log file formats, namely GPX, TCX, KML, FIT, IGC and NMEA.</p>
<div class="buttons">
<a href="https://sourceforge.net/projects/gpxsee/files/latest/download" class="download-btn">Download GPXSee</a>
<a href="https://github.com/tumic0/GPXSee" class="github-btn">View on GitHub</a>
</div>
</div>
<div class="cl">&nbsp;</div>
</li>
<li>
<div class="left-side"> <img src="css/images/maps.png" alt="" /> </div>
<div class="right-side">
<p>GPXSee supports a large variety of online maps as well as various offline map formats.</p>
<div class="buttons">
<a href="https://sourceforge.net/projects/gpxsee/files/latest/download" class="download-btn">Download GPXSee</a>
<a href="https://github.com/tumic0/GPXSee" class="github-btn">View on GitHub</a>
</div>
</div>
<div class="cl">&nbsp;</div>
</li>
</ul>
</div>
<a href="#" id="next">next</a> </div>
<div id="main">
<div id="content">
<h2>What is GPXSee?</h2>
2017-06-30 01:05:10 +02:00
<p>GPXSee is a GPS log file viewer and analyzer that supports
2017-06-22 01:33:38 +02:00
GPX, TCX, KML, FIT, IGC and NMEA files.</p>
<h3>Key features</h3>
<ul>
<li>User-definable online maps.</li>
<li>Offline maps (OziExplorer maps and TrekBuddy maps/atlases).</li>
<li>Elevation, speed, heart rate, cadence, power and temperature graphs.</li>
<li>Support for multiple tracks in one view.</li>
<li>Support for POI files.</li>
<li>Print/export to PDF.</li>
<li>Full-screen mode.</li>
2017-06-30 01:05:10 +02:00
<li>Native GUI (Qt) for Windows, Mac OS X and Linux.</li>
2017-06-22 01:33:38 +02:00
<li>Opens GPX, TCX, FIT, KML, IGC, NMEA and Garmin CSV files.</li>
2017-06-30 01:05:10 +02:00
<li><b>Free software</b> (GPLv3 open-source license).</li>
2017-06-22 01:33:38 +02:00
</ul>
<a name="maps"></a>
<h2>Maps</h2>
2017-08-15 14:24:11 +02:00
2017-06-22 01:33:38 +02:00
<h3>Online maps</h3>
2017-08-23 22:47:57 +02:00
<p>GPXSee supports most tile server based online maps out there, but the
<a href="https://github.com/tumic0/GPXSee/blob/master/pkg/maps.txt">list
of maps</a> distributed with the official packages is limited to those
that are "freely distributable". You may however easily override the default
map list with your own list either by editing the global map list file:</p>
2017-06-22 01:33:38 +02:00
2017-07-04 12:25:26 +02:00
<table class="config-files">
<tr>
<td class="os">Windows:</td>
<td class="file">C:\Program Files\GPXSee\maps.txt</td>
</tr><tr>
<td class="os">Linux:</td>
<td class="file">/usr/share/gpxsee/maps.txt</td>
</tr><tr>
<td class="os">OS X:</td>
<td class="file">/Applications/GPXSee.app/Contents/Resources/maps.txt</td>
</tr>
</table>
2017-08-15 14:24:11 +02:00
2017-06-22 01:33:38 +02:00
<p>or by overriding it with a user map list file:</p>
2017-07-04 12:25:26 +02:00
<table class="config-files">
<tr>
<td class="os">Windows:</td>
<td class="file">%HOMEPATH%\GPXSee\maps.txt</td>
</tr><tr>
<td class="os">OS X, Linux:</td>
<td class="file">$HOME/.gpxsee/maps.txt</td>
</tr>
</table>
2017-06-22 01:33:38 +02:00
<p>The file format is one map entry per line, consisting of the map name and
tiles URL delimited by a TAB character. The tile X and Y coordinates are
replaced with <code>$x</code> and <code>$y</code> in the URL and the zoom
level is replaced with <code>$z</code>. An example map file could look like:</p>
<pre>
Map1 http://tile.server.com/map/$z/$x/$y.png
Map2 http://mapserver.org/map/$z-$x-$y
</pre>
<h3>Offline maps</h3>
<p>OziExplorer maps and TrekBuddy maps/atlases are supported by GPXSee. You may
easily create offline atlases from online map services by using
<a href="http://mobac.sourceforge.net/">Mobile Atlas Creator (MOBAC)</a>.</p>
2017-08-15 14:24:11 +02:00
2017-06-22 01:33:38 +02:00
<p>Offline maps are loaded on program startup from the <code>maps</code>
directory in the same locations as the <code>maps.txt</code> file. The expected
structure is one map/atlas in a separate subdirectory. Supported map formats are
OziExplorer maps and TrekBuddy maps/atlases (tared and non-tared).
Supported map projections are Web Mercator, Transverse Mercator, UTM,
Lambert Conformal Conic, Albers Equal Area and Latitude/Longitude. For list of
supported datums see the <code>datums.csv</code> and <code>ellipsoids.csv</code>
2017-06-30 01:05:10 +02:00
configuration files (can be modified or overridden by user files like the map
2017-06-22 01:33:38 +02:00
list/map dir).</p>
<h2>POI files</h2>
<p>All of the supported formats with waypoints capability - GPX, KML, TCX, NMEA
and <a href="http://www.poi-factory.com/garmin-csv-file-format">Garmin CSV</a>
- can be loaded either as data files or as POI files. When a file is opened as
a POI file, only waypoints reasonable near the tracks/waypoints of the loaded
data files are displayed.</p>
<p>To make GPXSee load a POI file automatically on startup, add the file to the
<code>POI</code> directory in one of the configuration paths.</p>
<h2>Download</h2>
<a name="download"></a>
2017-08-15 14:24:11 +02:00
2017-06-22 01:33:38 +02:00
<ul>
<li><a href="https://sourceforge.net/projects/gpxsee/files/Source/">Sources</a></li>
<li><a href="https://sourceforge.net/projects/gpxsee/files/Windows/">Windows installer</a></li>
<li><a href="https://sourceforge.net/projects/gpxsee/files/Mac%20OS%20X/">Mac OS X bundle</a></li>
<li><a href="https://software.opensuse.org/download.html?project=home%3Atumic%3AGPXSee&amp;package=gpxsee">
Linux repos/packages</a></li>
</ul>
</div>
2017-08-15 14:24:11 +02:00
2017-06-22 01:33:38 +02:00
<div id="sidebar">
<div class="latest-news">
<h3>Releases</h3>
2017-09-16 00:06:46 +02:00
<div class="news-item">
<p class="date">Sep 15 2017</p>
<h4>Version 4.14</h4>
<ul>
<li>Fixed broken parsing of TCX files with heart rate data.</li>
<li>Fixed invalid memory access in NMEA parser.</li>
<li>Fixed broken units setting for cadence, heart rate and power graphs.</li>
<li>Added support for limiting the maximal zoom level of online map sources.</li>
<li>Added waypoints/POI size/color settings and map background color settings.</li>
<li>Adjusted the scale bar (text) size to the remaining content in print/PDF export output.</li>
</ul>
</div>
2017-09-03 21:37:31 +02:00
<div class="news-item">
<p class="date">Sep 3 2017</p>
<h4>Version 4.13</h4>
<ul>
<li>Added support for high-resolution printing.</li>
</ul>
</div>
2017-08-24 23:25:10 +02:00
<div class="news-item">
<p class="date">Aug 24 2017</p>
<h4>Version 4.12</h4>
<ul>
<li>Fixed broken LCC projection on southern hemisphere.</li>
<li>Added support for France I-IV and VICGRID/VICGRID94 projections.</li>
<li>Added map opacity (brightness) setting.</li>
<li>Added 4UMaps to map sources.</li>
</ul>
</div>
2017-08-15 15:17:47 +02:00
<div class="news-item">
<p class="date">Aug 15 2017</p>
<h4>Version 4.11</h4>
<ul>
<li>Fixed QT4 build.</li>
</ul>
</div>
2017-08-15 14:24:11 +02:00
<div class="news-item">
<p class="date">Aug 15 2017</p>
<h4>Version 4.10</h4>
<ul>
<li>Added support for OZF zoom levels.</li>
<li>Added support for maps with only 2 reference points.</li>
<li>Various map loading/displaying improvements.</li>
</ul>
</div>
2017-06-22 01:33:38 +02:00
</div>
2017-06-30 01:05:10 +02:00
<div id="changelog-link">
<a href="https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes">Full changelog</a>
</div>
2017-06-22 01:33:38 +02:00
</div>
<div class="cl">&nbsp;</div>
</div>
</div>
</div>
<div class="footer">
<div class="shell">
2017-06-30 01:05:10 +02:00
<p class="lf">Copyright &copy; 2017 Martin Tůma - All Rights Reserved</p>
2017-06-22 01:33:38 +02:00
<p class="rf">Design by <a href="http://www.websitecsstemplates.com/" target="_blank">WebsiteCSSTemplates</a></p>
<div style="clear:both;"></div>
</div>
</div>
<!-- END PAGE SOURCE -->
</body>
</html>