Skip to content

Commit 644e3d3

Browse files
committed
fix(docs): Fix some sphinx-build warnings including duplicate header names
1 parent 06e4612 commit 644e3d3

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

docs/pages/developer_guide/sitl_environment/gis_server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIS server
22
______________________________________________________
3-
Introduction
3+
Overview
44
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
55
GISNav requires access to a GIS server that serves high resolution `orthoimagery`_ and optional
66
`digital elevation models`_ (DEM) for the approximate location of the aircraft. The orthoimage and DEM `rasters`_ are

docs/pages/developer_guide/sitl_environment/install_gisnav.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GISNav ROS package
22
____________________________________________________
33
Install ROS 2
44
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5-
If you followed the :ref:`Autopilot` SITL install instructions you should already have ROS 2 installed. See
5+
If you followed the :ref:`Autopilots` SITL install instructions you should already have ROS 2 installed. See
66
`ROS 2 foxy install instructions`_ if you do not yet have ROS 2 on your machine. You can check your
77
ROS version with the ``whereis ros2`` command:
88

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Prerequisites
1+
Test prerequisites
22
____________________________________________________
33
.. note::
44
Install the :ref:`Development dependencies` before you attempt to run any tests in this section

gisnav/data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
except DataValueError as dve:
1414
self.get_logger().warn(f'Error determining vehicle position:\n{dve},\n{traceback.print_exc()}.')
1515
return None
16+
1617
"""
1718
from __future__ import annotations # Python version 3.7+
1819

gisnav/nodes/map_node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
"""Contains :class:`.Node` that provides :class:`OrthoImage3D`s"""
1+
"""Contains :class:`.Node` that provides :class:`OrthoImage3D` s"""
22
import time
3-
from typing import Optional, Tuple, List, Union, get_args
3+
from typing import Optional, Tuple, get_args
44

55
import numpy as np
66
import cv2

0 commit comments

Comments
 (0)