使用 tikz/pgfplots 绘制 GPS 地理坐标

使用 tikz/pgfplots 绘制 GPS 地理坐标

我有一个包含数千个地理坐标的日志文件:

flight-latitude;flight-longitude
48.7411499;11.57327366
48.7411499;11.57327366
48.7411499;11.57327271
48.7411499;11.57327175
...

我现在需要一种方法来用 tikz 或 pgfplots 为每个坐标绘制一个点和/或一条轨迹。

这个简单的例子只提供了一条垂直线。看起来,点后面的值没有足够的影响力。

\documentclass{standalone}
\usepackage{pgfplots} 
\pgfplotsset{compat = newest}

\begin{document}
\begin{tikzpicture}
    \begin{axis}[]
        \addplot [mark=o, blue] table[x=flight-latitude, y=flight-longitude, col sep=semicolon]{data/hover-data-obstacleState-5.txt};
    \end{axis}
\end{tikzpicture}
\end{document}

相关内容