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

257 lines
12 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>GPXSee - GPS log file viewer and analyzer</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="Description" content="GPXSee - GPS log file viewer and analyzer that supports GPX, TCX, KML, FIT, IGC and NMEA files." />
<link rel="icon" type="image/png" href="css/images/favicon.png"/>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!--[if IE 6]><link rel="stylesheet" href="css/ie6.css" type="text/css" media="all" /><![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/jquery.jcarousel.js" ></script>
<script src="js/js-func.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110140219-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110140219-1');
</script>
</head>
<body>
<!-- START PAGE SOURCE -->
<div class="shell">
<div class="shell-b">
<div id="header">
<img src="css/images/gpxsee.png" alt="" class="logo"/><h1 class="logo"><a href="http://www.gpxsee.org">GPXSee</a></h1>
<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>
<p>GPXSee is a GPS log file viewer and analyzer that supports
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>
<li>Native GUI (Qt) for Windows, Mac OS X and Linux.</li>
<li>Opens GPX, TCX, FIT, KML, IGC, NMEA and Garmin CSV files.</li>
<li><b>Free software</b> (GPLv3 open-source license).</li>
</ul>
<a name="maps"></a>
<h2>Maps</h2>
<h3>Online maps</h3>
<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 change the default
map list with your own list either by editing the global map list file:</p>
<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>
<p>or by overriding it with a user map list file:</p>
<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>
<p>The file format is one map entry per line, consisting of the map name,
tiles URL and an optional maximal zoom level 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 15
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>
<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, Lambert Azimuthal Equal Area and
Latitude/Longitude. For list of supported datums see the <code>datums.csv</code>
and <code>ellipsoids.csv</code> configuration files (can be modified or
overridden by user files like the map 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>
<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>
<div id="sidebar">
<div class="latest-news">
<h3>Releases</h3>
<div class="news-item">
<p class="date">Dec 9 2017</p>
<h4>Version 4.17</h4>
<ul>
<li>Added support for Lambert Azimuthal Equal Area projections.</li>
<li>Added support for map viewing without GPS log files loaded.</li>
<li>Added slider/marker color setting.</li>
<li>Fixed scene centering issue.</li>
<li>Fixed offline map scale computation issue.</li>
<li>Fixed some corner case map drawing issues.</li>
</ul>
</div>
<div class="news-item">
<p class="date">Oct 18 2017</p>
<h4>Version 4.16</h4>
<ul>
<li>Fixed broken loading of KML files with folder elements outside document element.</li>
<li>Added support for KML files with multitracks.</li>
<li>Added support for Temperature, Cadence and Heartrate in KML files.</li>
<li>Added support for TCX multi-sport activities.</li>
</ul>
</div>
<div class="news-item">
<p class="date">Oct 6 2017</p>
<h4>Version 4.15</h4>
<ul>
<li>Fixed the 1px content offset on zoom/map change issue.</li>
<li>Improved graph slider info.</li>
<li>Graph items are now selecteble like path items (+ tool tips).</li>
<li>OS X builds are now signed.</li>
</ul>
</div>
<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>
<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>
</div>
<div id="changelog-link">
<a href="https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes">Full changelog</a>
</div>
</div>
<div class="cl">&nbsp;</div>
</div>
</div>
</div>
<div class="footer">
<div class="shell">
<p class="lf">Copyright &copy; 2017 Martin Tůma - All Rights Reserved</p>
<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>