根据 GPS 轨迹绘制海拔高度剖面图
我们将利用 Strava 应用程序记录的 GPS 轨迹绘制海拔高度曲线图。
设置和数据下载
以下代码块将安装所需的软件包,并将数据集下载到 Colab 环境中。
os.mkdir(path, mode=511, *, dir_fd=None)
Create a directory.
If dir_fd is not None, it should be a file descriptor open to a directory,
and path should be relative; path will then be relative to that directory.
dir_fd may not be implemented on your platform.
If it is unavailable, using it will raise a NotImplementedError.
The mode argument is ignored on Windows. Where it is used, the current umask value is first masked out.
创建一个目录。
如果 dir_fd 不是 None,那么它应该是一个指向目录的文件描述符、
且路径应为相对路径;那么路径将是该目录的相对路径。
dir_fd 可能没有在你的平台上实现。
如